Problem With Voice Recognition
    7 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
I have found a code in voice recognition. http://crunchmodo.com/digital-signal-processing-voice-recognition-in-matlab-source-code/
When I put it in Matlab it does not work it give error Error: File: Voice Recognition.m Line: 1 Column: 1 The input character is not valid in MATLAB statements or expressions. and other errors when you delete the error line.
The Matlab program Iam using is r2013b
What I should do?
0 comentarios
Respuestas (5)
  Suneesh
    
 el 18 de Dic. de 2013
        The first error is on: ‘Get ready to record your name’
This is a line of text in the provided code which is not MATLAB syntax. I suggest commented it out:
The rest of the errors seem to be caused due to the usage of apostrophes instead of single quotes:
for i = 1:1
file = sprintf(‘%s%d.wav’,'rec’,i);
input(‘Press enter when ready to record your name’);
You may fix these issues by simple replacing all the apostrophes (`) with single quotes (')
0 comentarios
  Walter Roberson
      
      
 el 18 de Dic. de 2013
        For the moment replace
   path='rec1.wav';
with
   path='';
Eventually, have a look at fullfile()
0 comentarios
  Dinesh Agarwal
 el 30 de Mzo. de 2014
        You can just change the name of .m file. Replace Voice Recognition.m with voice_recognition.m then this will not show any error and program may work properly.
0 comentarios
Ver también
Categorías
				Más información sobre Deep Learning Toolbox en Help Center y File Exchange.
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!



