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

1 visualización (últimos 30 días)
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

Respuesta aceptada

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

Más respuestas (0)

Categorías

Más información sobre Line Plots en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by