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.

 采纳的回答

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 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by