how to add two loops
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
phoenix
le 10 Sep 2017
Commenté : Andrei Bobrov
le 10 Sep 2017
how to write this in matlab. c=x+y; where x=p^2*e^j*p and y=q*e^(-j*q); p,q ranges from 1:1:k.
0 commentaires
Réponse acceptée
Andrei Bobrov
le 10 Sep 2017
t = 1:k;
c = t.^2.*exp(1i*t) + t.*exp(-1i*t);
1 commentaire
Andrei Bobrov
le 10 Sep 2017
t = 1:k;
p=(2*t.^2+t+1)';
q=(2*t.^2+3*t+2)';
c = p.^2.*exp(1i*p) + q.*exp(-1i*q);
Plus de réponses (1)
Voir également
Catégories
En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!