How to plot a graph by extracting the variables from each .mat file?

I have 10 .mat files in a folder. The name of each file is mean1.mat, mean2.mat, mean3.mat, and so on. In each mat file I have x and y as variables. I want to plot x and y extracted from each .mat file as a scatter plot. May I know how should I do it?
Thanks in advance.

 Accepted Answer

matFiles = dir('*.mat') ;
N = length(matFiles) ;
figure
hold on
for i = 1:N
load(matFiles(i).name) ;
scatter(x,y,[],'b','filled','c')
end

More Answers (0)

Categories

Find more on Interactive Control and Callbacks in Help Center and File Exchange

Tags

Asked:

Anu
on 1 Dec 2021

Commented:

on 24 Feb 2022

Community Treasure Hunt

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

Start Hunting!