Issue with plotting variables with ranges

조회 수: 1 (최근 30일)
bella bridges
bella bridges 2021년 4월 3일
댓글: bella bridges 2021년 4월 3일
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
Sulaymon Eshkabilov 2021년 4월 3일
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