Plot data from 2 different files in the same folder

How do I plot data from 2 files in to the same graph I have two files; program1_1 program2_2
the files are almost identical but with a few different values for different variables.

 채택된 답변

George
George 2016년 9월 6일

0 개 추천

It doesn't matter what files the data is in. You need to load the data and run the associated plotting commands.

댓글 수: 3

What commands do I use to get the data from 2 different files to be plotted on one plot
A = readtable('file1.csv');
B = readtable('file2.csv');
plot(A.var1, B.var2);
Thanks. It helped me solve one of my issues. Cheers!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

태그

질문:

2016년 9월 6일

댓글:

2020년 2월 9일

Community Treasure Hunt

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

Start Hunting!

Translated by