DSPRelated.com
Code

sound play command in scilab

Senthilkumar December 28, 2011 Coded in Scilab

This program used to play a voice sinal with different bit depth

//Caption: Reading a Speech Signal & 
//Play the signal
clear;
clc;
[y,Fs,bits_y]=wavread("E:\4.wav");
sound(y,Fs,16)