data is getting plot on 4 different graphs while I would like to see all the data on one graph!

1 view (last 30 days)
Hi,
I do not know what am I doing wronf here, I am trying to plot the dataset from 4 different experiemnt on one graph, but instead I am getting 4 different graphs. Code is below:
files = { 'F:\3-PIV_Experimental_Data\Outlet_110\Data_LaserSheet_D\Data_Head\Data_Raw\LaserSheet.xlsx'; ...
'F:\3-PIV_Experimental_Data\Outlet_110\Data_LaserSheet_C\Data_Head\Data_Raw\LaserSheet.xlsx'; ...
'F:\3-PIV_Experimental_Data\Outlet_110\Data_LaserSheet_B\Data_Head\Data_Raw\LaserSheet.xlsx'; ...
'F:\3-PIV_Experimental_Data\Outlet_110\Data_LaserSheet_A\Data_Head\Data_Raw\LaserSheet.xlsx'};
for i = 1:numel(files)
a = readtable(files{i});
X = a{:,16};
Y = a{:,15};
figure(i)
plot(X,Y,'*');
hold on
end

Accepted Answer

VBBV
VBBV on 7 Jan 2022
figure(1)
If you use loop index for figure, then it will plot as many figures as number of files

More Answers (0)

Categories

Find more on Line Plots in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!