Info
此问题已关闭。 请重新打开它进行编辑或回答。
how can i plot the following text files?
1 次查看(过去 30 天)
显示 更早的评论
im trying to plot the textfiles attached like the image attached, can anyone help me please?
0 个评论
回答(3 个)
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)')
0 个评论
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
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!