Putting array in function to graph

I am trying to graph this using the M array as input values
%For graph
x = 0 : 0.1 : 2;
y = 0.7*(x.^2)*(1+0.2*(x.^2))^-3.5
figure(1)
plot(x,y)
grid
This error is returned:
Error using ^ (line 51)
Incorrect dimensions for raising a matrix to a power. Check that the matrix is square and the power
is a scalar. To perform elementwise matrix powers, use '.^'.
Error in aero (line 3)
y = 0.7*(x.^2)*(1+0.2*(x.^2))^-3.5
It was also not working trying to retrive N's values and not graphing. What am I doing wrong?

Answers (1)

KSSV
KSSV on 16 Sep 2021
Edited: KSSV on 16 Sep 2021
x = 0 : 0.1 : 2;
y = 0.7*(x.^2).*(1+0.2*(x.^2)).^-3.5 ;
y = 1×21
0 0.0070 0.0272 0.0592 0.1003 0.1475 0.1976 0.2473 0.2939 0.3352 0.3698 0.3967 0.4157 0.4270 0.4311 0.4290 0.4216 0.4098 0.3947 0.3771 0.3579
figure(1)
plot(x,y)
grid

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Asked:

on 16 Sep 2021

Edited:

on 16 Sep 2021

Community Treasure Hunt

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

Start Hunting!