Filter löschen
Filter löschen

Against value plot different value

1 Ansicht (letzte 30 Tage)
Junway
Junway am 22 Jul. 2021
Beantwortet: KSSV am 22 Jul. 2021
Hi,
I want to plot against value L 0 to 2
x-axis is L y-axis is A and B value
here is equation.
I have no idea how to set it.
please help me
A = L / 10
B = (A)/ 20

Antworten (1)

KSSV
KSSV am 22 Jul. 2021
This is a simple problem, you sould learn about MATLAB basics. This time I am answering your question; next I am not going to help you unless there is an attempt from you.
L = linspace(0,2) ;
A = L/10 ;
B = A/20 ;
plot(L,A,'r',L,B,'b') ;
legend('A','B')

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by