I could not create graph using plot command, where is my fault?

1 view (last 30 days)
Cp0=-.41;
M=0:.1:.9;
Cpcr1=(Cp0/sqrt(1-(M^2)));
plot(M,Cpcr1)

Accepted Answer

Image Analyst
Image Analyst on 24 May 2015
M is an array so you need to use ./ and .^ instead of / and ^.
Cp0=-.41;
M=0:.1:.9;
Cpcr1=(Cp0./sqrt(1-(M.^2)));
plot(M,Cpcr1, 'b*-', 'LineWidth', 2);
grid on;

More Answers (0)

Categories

Find more on Line Plots in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!