Please, how to plot for this code?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
k = -2:0.1:2;
g = ((2*cos(2*k))-2)/(1i*k);
plot(k,g)
0 Commenti
Risposta accettata
KSSV
il 25 Gen 2021
Read about element by element operations.
k = -2:0.1:2;
g = ((2*cos(2*k))-2)./(1i*k); % use ./
plot(k,abs(g))
hold on
plot(k,real(g))
plot(k,imag(g))
legend('abs','real','imaginary')
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Annotations in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!