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

조회 수: 1 (최근 30일)
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

채택된 답변

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Line Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by