purpose of a period in a var set/equation ?
Mostrar comentarios más antiguos
from
+++++++++++++++++++++++++++
fsamp = 11025;
dt = 1/fsamp;
dur = 1.8;
tt = 0 : dt : dur;
psi = 2*pi*(100 + 200*tt + 500*tt.*tt);
xx = real( 7.7*exp(j*psi) );
soundsc( xx, fsamp )
++++++++++++++++++++++++++++++
what is the purpose of the period in "psi = 2*pi*(100 + 200*tt + 500*tt.*tt)" ?
Respuestas (1)
Andrew Newell
el 15 de Sept. de 2011
0 votos
With the dot, it indicates element-by-element multiplication instead of matrix multiplication. See Matrix and array arithmetic.
Categorías
Más información sobre Performance and Memory 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!