Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.1.1 - Français

Change language to:
English - 日本語 - Português - Русский

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Aide de Scilab >> Sons - fichiers audio > wavwrite

wavwrite

writes .wav sound file

Syntax

wavwrite(y, wavfile)
wavwrite(y, Fs, wavfile)
wavwrite(y, Fs, nbits, wavfile)

Arguments

y

row vector or matrix: Sound amplitudes = real values in [-1,1]. One row per channel. Values out of [-1,+1] are ignored.

wavfile

string (The .wav extension is appended if no extension is given)

Fs

integer: Sampling frequency, in Hz. 22500 is the default value.

nbits

bit-depth 8, 16, 24, 32 bits. it describes the number of bits of information recorded for each sample. 16 is the default value.

Description

Utility function to save .wav sound file. wavwrite(y,wavfile) writes a sound file specified by the string wavfile.

wavwrite(y,Fs,wavfile) specifies in Fs the sampling rate of the data in Hertz.

Examples

A = matrix(1:6,2,3);
wavwrite(A/6,TMPDIR+'/foo.wav');
B = wavread(TMPDIR+'/foo.wav');

See also

  • auread — load .au sound file
  • wavread — reads sound data or querries data info from a .wav audio file
  • savewave — save data into a sound wav file.
  • analyze — frequency plot of a sound signal
  • mapsound — Computes and displays an Amplitude(time, frequency) spectrogram of a sound record
Report an issue
<< wavread Sons - fichiers audio Temps - calendrier date horloge >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Mon Jan 03 14:33:08 CET 2022