Thread Closed

MATLAB save command and transpose command

 
Share Thread Thread Tools
Apr30-09, 06:56 PM   #1
 
Recognitions:
Gold Membership Gold Member

MATLAB save command and transpose command


I have a bunch of row vectors saved as objects r1 r2 r3. I would like to send each set of data (row) to a text file, but I want it to save as a column. This means that I want to save the transpose of the data, i.e., r1' r2'...

Unfortunately, when I try to use
Code:
save r1.txt r1' -ascii
MATLAB thinks that the quote ' is an unbalanced string.

I know that an "easy fix" would be to create new objects like R1=r1';

but I don't really think that is efficient. How can I get around this?

thanks
Casey
PhysOrg.com
PhysOrg
science news on PhysOrg.com

>> Bird's playlist could signal mental strengths and weaknesses
>> Minus environment, patterns still emerge: Computational study tracks E. coli cells' regulatory mechanisms
>> Bacterium uses natural 'thermometer' to trigger diarrheal disease, scientists find
May5-09, 12:49 AM   #2
 
Recognitions:
Gold Membership Gold Member
any takers on this one?
May5-09, 01:44 AM   #3
 
Quote by Saladsamurai View Post
any takers on this one?
As far as I know, the matlab function SAVE expects the following arguments:

save(<string (filename)>, <string (variable name 1)>, ... <string (variable name N)>, <string (options)>)

You are not passing the function actual variables, just the names. That's why you can't pass r1', because that is not a string.


Why is,

r1 = r1';
save('rrrrrs.txt', 'r1', '-ascii');

not efficient?

I mean, the transpose has to be done somewhere in memory.
May5-09, 10:57 AM   #4
 
Recognitions:
Gold Membership Gold Member

MATLAB save command and transpose command


Quote by FrogPad View Post

Why is,

r1 = r1';
save('rrrrrs.txt', 'r1', '-ascii');

not efficient?

I mean, the transpose has to be done somewhere in memory.
Because if I have ten r values, I have to create 10 new R=r' values.

I suppose I could write a for loop that does it for me, but for only 10 entries, that seemed a little tedious (possibly just laziness ).
May5-09, 01:08 PM   #5
 
lol, yeah.

You could probably write a wrapper around the save function, to do what you want.


function tSave(V)

vt = V';

save([num2str(V) '.txt'], 'vt', '-ascii');

end

then just call this little function instead
Thread Closed
Thread Tools


Similar Threads for: MATLAB save command and transpose command
Thread Forum Replies
matlab command "while" Engineering, Comp Sci, & Technology Homework 4
while command in MATLAB Math & Science Software 4
MATLAB 'syms' command Math & Science Software 0
Symbolic intergration in Matlab using "INT" command? Math & Science Software 3
making functions with 'inline' command in matlab Math & Science Software 1