purpose of a period in a var set/equation ?
Afficher commentaires plus anciens
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)" ?
Réponses (1)
Andrew Newell
le 15 Sep 2011
0 votes
With the dot, it indicates element-by-element multiplication instead of matrix multiplication. See Matrix and array arithmetic.
Catégories
En savoir plus sur Image Filtering and Enhancement dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!