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

1 次查看(过去 30 天)
Cp0=-.41;
M=0:.1:.9;
Cpcr1=(Cp0/sqrt(1-(M^2)));
plot(M,Cpcr1)

采纳的回答

Image Analyst
Image Analyst 2015-5-24
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;

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Line Plots 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by