how to add two loops
2 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
採用された回答
Andrei Bobrov
2017 年 9 月 10 日
t = 1:k;
c = t.^2.*exp(1i*t) + t.*exp(-1i*t);
1 件のコメント
Andrei Bobrov
2017 年 9 月 10 日
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);
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Loops and Conditional Statements についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!