why this message error ?:Array indices must be positive integers or logical values
Mostrar comentarios más antiguos
Hi,
When i write this little script:
---------------------------------------------------------------------------------------------------------
demo matlab
t = (10:1:200)';
y = sin(2*pi*50*t)
z = y(t-10)
w = y+z
plot(t(1:50),w(1:50))
sound(w,Fs);
-------------------------------------------------------------------------------------------------------
there is a message error: message error: Array indices must be positive integers or logical values.
Howewer,when i write this:
-----------------------------------------------------------------------------------------------------
demo matlab
t = (0:0.001:100)';
y = sin(2*pi*50*t)
plot(t(1:50),y(1:50))
sound(y,Fs);
------------------------------------------------------------------------------------------------------
there is no message error.
Why?
thanks
Respuesta aceptada
Más respuestas (2)
jérôme TAÏEB
el 30 de Sept. de 2018
0 votos
3 comentarios
Image Analyst
el 30 de Sept. de 2018
Who are you talking to? This should be a comment to someone , not an answer to your original question.
Try soundsc().
Star Strider
el 30 de Sept. de 2018
The sound is there. It is of too short a duration to notice:
signal_duration = (200-11)/44000
signal_duration =
0.00429545454545455
It only lasts for 4.3 milli-seconds!
jérôme TAÏEB
el 30 de Sept. de 2018
Editada: jérôme TAÏEB
el 30 de Sept. de 2018
Image Analyst
el 30 de Sept. de 2018
0 votos
See attached sound making demo. It doesn't make your sound but adapt it as needed.

Categorías
Más información sobre Startup and Shutdown en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!