Load .mat file from anyfolder

I have to load .mat file from a folder in my workspace. Can anyone tell me how to do so?

 Accepted Answer

Mohammad Abouali
Mohammad Abouali on 8 Dec 2015
Edited: Mohammad Abouali on 8 Dec 2015
load C:\myFolder\mySubFolder\myMatFile.mat
or
variableName= 'myVarName';
matfilePath = 'C:\myFolder\mySubFolder\myMatFile.mat';
data = load(matfilePath);
% to access the variable
data.(variableName);

More Answers (0)

Categories

Find more on MATLAB in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!