Thread Subject: load a file into a variable name different than the filename

Subject: load a file into a variable name different than the filename

From: David Doria

Date: 1 Apr, 2008 13:23:02

Message: 1 of 3

I have a file myfile.txt that contains

1 2 3
4 5 6
7 8 9

If I say

load 'myfile.txt'

the result is a variable called myfile that contains the matrix.

I would like to do something like

load 'myfile.txt' mymatrix

which produces a variable called mymatrix instead of myfile.
 Is this possible?

The reason is that if I have a loop that goes through a list
of files, I'd like to have other code in the loop that can
just reference mymatrix and not have to update to the
current filename on every iteration.

Please let me know.

Thanks!

David

Subject: load a file into a variable name different than the filename

From: David

Date: 1 Apr, 2008 13:28:02

Message: 2 of 3

"David Doria" <daviddoria@gmail.com> wrote in message
<fstcvm$k7m$1@fred.mathworks.com>...
> I have a file myfile.txt that contains
>
> 1 2 3
> 4 5 6
> 7 8 9
>
> If I say
>
> load 'myfile.txt'
>
> the result is a variable called myfile that contains the
matrix.
>
> I would like to do something like
>
> load 'myfile.txt' mymatrix
>
> which produces a variable called mymatrix instead of
myfile.
> Is this possible?
>
> The reason is that if I have a loop that goes through a
list
> of files, I'd like to have other code in the loop that
can
> just reference mymatrix and not have to update to the
> current filename on every iteration.
>
> Please let me know.
>
> Thanks!
>
> David


try
mymatrix=load('myfile.txt');

Subject: load a file into a variable name different than the filename

From: David Doria

Date: 6 Apr, 2008 15:27:01

Message: 3 of 3

works perfect... I always forget about the () notation for
some commands.

Thanks,

Dave

Tags for this Thread

Add a New Tag:

Separated by commas
Ex.: root locus, bode

What are tags?

A tag is like a keyword or category label associated with each thread. Tags make it easier for you to find threads of interest.

Anyone can tag a thread. Tags are public and visible to everyone.

rssFeed for this Thread

Contact us at files@mathworks.com