why am I getting matrix dimension error..?
7 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Sai Monika Ananthoju
il 29 Lug 2021
Modificato: Sai Monika Ananthoju
il 30 Lug 2021
when i tried to run this code , its displaying the "matrix dimension must agree". I want the plot for phase angle at various frequencies. and when i used for loop i got the result only for last iteration and plot shows only last iterated point. can i get a help on this.
clc;
clear;
close all;
d=0.23;
theta=40;
f=1:18;
lamda(f)=3*0.1/f;
phaseangle(lamda)=(2*pi/(lambda))*d*sin(theta);
plot(f,phaseangle,'-o')
xlabel('frequency(Ghz)')
ylabel('phase angle')
%%%%%
clc;
clear;
close all;
d=0.23;
theta=40;
for f=1:1:18;
lamda=3*0.1/f;
phaseangle=(2*pi/(lambda))*d*sin(theta);
plot(f,phaseangle,'-o')
xlabel('frequency(Ghz)')
ylabel('phase angle')
end
0 Commenti
Risposta accettata
Yongjian Feng
il 29 Lug 2021
There are several errors typos.
clc;
clear;
close all;
d=0.23;
theta=40;
f=1:18;
lambda =3*0.1./f;
phaseangle=(2*pi./(lambda))*d*sin(theta);
plot(f,phaseangle,'-o')
xlabel('frequency(Ghz)')
ylabel('phase angle')
%%%%%
clc;
clear;
close all;
d=0.23;
theta=40;
for f=1:1:18
lambda=3*0.1/f;
phaseangle=(2*pi./(lambda))*d*sin(theta);
plot(f,phaseangle,'-o')
xlabel('frequency(Ghz)')
ylabel('phase angle')
end
3 Commenti
Yongjian Feng
il 29 Lug 2021
You actually want this, right?
clc;
clear;
close all;
d=0.23;
theta=40;
f=1:18;
lambda=3*0.1./f;
phaseangle=(2*pi./(lambda))*d*sin(theta);
plot(f,phaseangle,'-o')
xlabel('frequency(Ghz)')
ylabel('phase angle')
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Environment and Clutter 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!