Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

how can i plot the following text files?

조회 수: 1 (최근 30일)
ciaran balfe
ciaran balfe 2019년 3월 15일
마감: MATLAB Answer Bot 2021년 8월 20일
im trying to plot the textfiles attached like the image attached, can anyone help me please?
car velocity lane 1, 50 cars.PNG

답변 (3개)

Sajeer Modavan
Sajeer Modavan 2019년 3월 16일
Input1 = load('double_lane_velocity_lane1.txt');
Input2 = load('double_lane_velocity_lane2.txt');
figure
for ii = 0:49
index1 = find(Input1(:,1)==ii);
index2 = find(Input2(:,1)==ii);
t = [Input1(index1,2); Input2(index2,2)];
In = [Input1(index1,3); Input2(index2,3)];
plot(t,In),hold on
end
ylim([18 41])
xlabel('Simulation Time (s)')
ylabel('velocity (m/s)')

ciaran balfe
ciaran balfe 2019년 3월 17일
thanks very much, is there anyway to graph each text file seperately? double_lane_velocity_lane1 is what you have graphed and it does look exactly as it is meant to but double_lane_velocity_lane2 looks a little different.
also ive attached another two text files i was wondering if you could tell me why your code doesnt work for these? thank you very much i appreciate your help

Sajeer Modavan
Sajeer Modavan 2019년 3월 17일
편집: Sajeer Modavan 2019년 3월 17일
For plotting combined input 1 and 2
clear, clc, close all;
Input1 = load('double_lane_position_lane12k.txt');
Input2 = load('double_lane_position_lane22k.txt');
fig = figure;
for ii = 0:49
index1 = find(Input1(:,1)==ii);
index2 = find(Input2(:,1)==ii);
t = [Input1(index1,2); Input2(index2,2)];
In = [Input1(index1,3); Input2(index2,3)];
plot(t,In),hold on
end
xlabel('Simulation Time (s)')
ylabel('velocity (m/s)')
you can edith this code for plotting input 1 and 2 seperate
  댓글 수: 1
Sajeer Modavan
Sajeer Modavan 2019년 3월 24일
Do you need any further help, accept the answer and close this issue if you don't need any further help.

Community Treasure Hunt

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

Start Hunting!

Translated by