Issue with plotting variables with ranges

1 vue (au cours des 30 derniers jours)
bella bridges
bella bridges le 3 Avr 2021
Commenté : bella bridges le 3 Avr 2021
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!

Réponse acceptée

Sulaymon Eshkabilov
Sulaymon Eshkabilov le 3 Avr 2021
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
  1 commentaire
bella bridges
bella bridges le 3 Avr 2021
Very helpful. Thank you!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Produits


Version

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by