Issue with plotting variables with ranges

1 次查看(过去 30 天)
Hi, I am trying to plot these three equations. They should form a sort of triangle. The main issue I am having is trying to enter the equations, which have variables with ranges.
% x is x/c
assume(0<=x<=.1)
Cpu1=1-300*(x)^2
Here is me trying the first one, but it doesn't give me any values. Not sure the best way to do this. Any help would be greatly appreciated!

采纳的回答

Sulaymon Eshkabilov
Here is how to start this:
N = 200; % Number of data points to be genearted and calculated to plot
xc=linspace(0, .1, N);
Cpu=1-300*xc.^2;
xc2 = linspace(.101, 1, N);
Cpu2 = -2.777+2.777*xc2;
xc3 = linspace(0, 1, N);
Cl = 1-.95*xc3;
% the rest is to plot the above data
plot(xc, Cpu, 'b-o'), hold on;
plot(xc2, Cpu2, 'r-x')
plot(xc3, Cl, 'k-')
Good luck

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

产品


版本

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by