필터 지우기
필터 지우기

Plotting the data with extended field.

조회 수: 1 (최근 30일)
Steve Avilesmejia
Steve Avilesmejia 2020년 10월 28일
답변: Shubham Khatri 2020년 11월 2일
I need to plot this data in both in a scatter plot and a 2d line plot and I need the speed from 10-160 km/hr

답변 (1개)

Shubham Khatri
Shubham Khatri 2020년 11월 2일
Please take a look at the following code. To change the limits on the x axis, xlim function is used.
speed = [30 45 60 75 90 120];
thinkingmin = [6 9 11 15 17 22];
brakingcarmin = [5 12 21 33 48 86];
brakingmotorcyclemin = [2 4 9 17 27 82];
plot(speed,thinkingmin,speed,brakingcarmin,'r',speed,brakingmotorcyclemin,'g')
xlim([10 160])
legend('Thinking','Braking Car','Braking Motorcycle')
figure (2)
scatter(speed,thinkingmin)
hold on
scatter(speed,brakingcarmin)
hold on
scatter(speed,brakingmotorcyclemin)
xlim([10 160])
legend('Thinking','Braking Car','Braking Motorcycle')

카테고리

Help CenterFile Exchange에서 Scatter Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by