Error message when trying to plot

1 Ansicht (letzte 30 Tage)
Natali Petani
Natali Petani am 1 Dez. 2022
Beantwortet: Torsten am 1 Dez. 2022
getting the following errors when i run the code below:
Error using /
Matrix dimensions must agree.
Error in TEST (line 11)
T=(K/(sqrt(2*pi*w)));
K = 0.5605
s= 0:1:1000;
t=s/1000;
u= t-0.1;
v=(s-500)/1000;
w =sqrt(u.^2+v.^2);
T=(K/(sqrt(2*pi*w)));
plot(s,T);shg

Antworten (1)

Torsten
Torsten am 1 Dez. 2022
T = K ./ sqrt(2*pi*w);
instead of
T=(K/(sqrt(2*pi*w)));

Kategorien

Mehr zu Line Plots finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by