How can i plot 1 variable in x and 3 in y for a 2 D plot

1 visualización (últimos 30 días)
if true
% code
end[num] = xlsread('steering_angle.xlsx') ;
Steeringangle = num(:,1);
Geschwindigkeit = num(:,2);
Steeringangle(isnan(Steeringangle)) = [];
Geschwindigkeit(isnan(Geschwindigkeit)) = [];
Spurweitvorne=1.55;
Spurweitrueck=1.52;
Radstand=2.637;
Radius=((Radstand/tan(Steeringangle))+((Spurweitvorne-Spurweitrueck)/2));
Radiusin=((Radstand/tan(Steeringangle))+((Spurweitvorne-Spurweitrueck)/2))-0.76;
Radiusraus=((Radstand/tan(Steeringangle))+((Spurweitvorne-Spurweitrueck)/2))+0.76;
Geschwindigkeitin=Geschwindigkeit*(Radiusin/Radius);
Geschwindigkeitraus=Geschwindigkeit*(Radiusraus/Radius);
I want to plot Steering Angle vs Geschwindigkeit ,Geschwindigkeitin ,Geschwindigkeitraus

Respuesta aceptada

madhan ravi
madhan ravi el 18 de Oct. de 2018
Editada: madhan ravi el 18 de Oct. de 2018
[num,~,~] = xlsread('steering_angle.xlsx') %use function syntax properly
plot(Steeringangle,Geschwindigkeit,'b')
hold on
plot(Steeringangle,Geschwindigkeitin,'g')
plot(Steeringangle,Geschwindigkeitraus,'r')
  5 comentarios
Shubham Mohan Tatpalliwar
Shubham Mohan Tatpalliwar el 18 de Oct. de 2018
how should i convet the data in ascending order?
madhan ravi
madhan ravi el 18 de Oct. de 2018
Editada: madhan ravi el 18 de Oct. de 2018
sort(datas,'ascend')
see sort()

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Scatter Plots en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by