how could i plot a contour
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
khaled Abdelghafar
il 28 Feb 2022
Commentato: Abolfazl Chaman Motlagh
il 28 Feb 2022
Hi
i want to plot the following contour but i always encounter an error
x=-pi:0.001*pi:pi;
y=0:0.1*6:6;
[x,y]=meshgrid(x,y);
z=(100*sqrt(2*pi)/sqrt(2*pi.*(y-2.))).*cos(x/2).*(1.-sin(x/2.).*sin(3.*x/2.));
contour(x,y,z)
1 Commento
Abolfazl Chaman Motlagh
il 28 Feb 2022
Risposta accettata
Arif Hoq
il 28 Feb 2022
Modificato: Arif Hoq
il 28 Feb 2022
you shoud demontrate element wise multiplication/division in the variable z. most porbably this contour is allowed to plot real value.
x=-pi:0.001*pi:pi;
y=0:0.1*6:6;
[x,y]=meshgrid(x,y);
z=(100*sqrt(2*pi)./sqrt(2*pi.*(y-2))).*cos(x./2).*(1-sin(x./2).*sin(3*x./2));
% contour(x,y,z)
contour(real(z))
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Contour Plots 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!
