i need the code for the below graph.
古いコメントを表示

7 件のコメント
Sanjay Kumar
2024 年 2 月 29 日
Sanjay Kumar
2024 年 2 月 29 日
Cris LaPierre
2024 年 2 月 29 日
This is an impossible request based on the information we have.
As a beginner, you would benefit by going through MATLAB Onramp. It's a free, 2-hr introduction to the basics of using MATLAB.
Ch 9 introduces plotting, and teaches the skills you need to create a plot similar to the one you show in your post.
Sanjay Kumar
2024 年 2 月 29 日
Sanjay Kumar
2024 年 2 月 29 日
Voss
2024 年 2 月 29 日
Are you having trouble implementing the algorithm in MATLAB or are you having trouble creating the plot in MATLAB?
回答 (1 件)
I don't have the data, so I can't generate that exact plot, but here's a similar one:
x = -25:245;
y = (x+25).'.*[0.5 0.45]-75;
plot(x,y(:,1),'r','LineWidth',3);
hold on
plot(x,y(:,2),'Color',[0.75 0.75 0],'LineWidth',2)
grid on
xlabel('Meters')
ylabel('Meters')
legend({'GPS ground trooth','Spufed trajectory'},'Location','NorthWest')
カテゴリ
ヘルプ センター および File Exchange で Programming についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

