purpose of a period in a var set/equation ?
Ältere Kommentare anzeigen
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)" ?
Antworten (1)
Andrew Newell
am 15 Sep. 2011
0 Stimmen
With the dot, it indicates element-by-element multiplication instead of matrix multiplication. See Matrix and array arithmetic.
Kategorien
Mehr zu Performance and Memory finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!