Azzera filtri
Azzera filtri

how to add two loops

2 visualizzazioni (ultimi 30 giorni)
phoenix
phoenix il 10 Set 2017
Commentato: Andrei Bobrov il 10 Set 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.

Risposta accettata

Andrei Bobrov
Andrei Bobrov il 10 Set 2017
t = 1:k;
c = t.^2.*exp(1i*t) + t.*exp(-1i*t);
  1 Commento
Andrei Bobrov
Andrei Bobrov il 10 Set 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);

Accedi per commentare.

Più risposte (1)

KSSV
KSSV il 10 Set 2017
p=1:1:k;
q=p;
x=p.^2*exp(j*p);
y=q.*exp(-j*q);
c=x+y;

Categorie

Scopri di più su Loops and Conditional Statements in Help Center e File Exchange

Tag

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by