how to load .mat file into a function

Hi,
I need your help if possible. I've recently started to learn matlab! I need to load a .mat file (a matrix of 57x9) as input of my function. Can you say me how to write this in the code of the function?
thanks for your time
Vittoria

2 Comments

SRI
SRI on 14 Mar 2014
Edited: SRI on 14 Mar 2014
function Exchange = Input(A)
A = magic(8);
save mydata.mat A
load mydata.mat
disp(A)
just try this out in two script one as function file next as main file

Sign in to comment.

Answers (2)

Asked:

on 13 Mar 2014

Commented:

SRI
on 14 Mar 2014

Community Treasure Hunt

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

Start Hunting!