How to save a vector v=[1 2 3 4]; into a text file. How to do that?

How to save a vector v=[1 2 3 4]; into a text file. How to do that? [Hint use save] in matlab?

 Accepted Answer

v=[1 2 3 4];
save('myfile.txt','v','-ascii')

5 Comments

it shows this message sir; error: 'ascii' undefined near line 1 column 31 error: evaluating argument list element number 2 >>
IT IS WORKING FINE IN MY matlab 2015A..
Try
save 'data.txt' v -ascii
If no error pops...in the folder you are working....a txt file called data will be created with vector v in the file.
Sir how about this one? can you help me with this?
Given A = [ 1 120; 1 130; 2 140; 3 180; 3 160 ]
B = [ 1 91; 2 92; 3 93 ]
targetdata = [ 1 120 91; 1 130 91; 2 140 92; 3 180 92; 3 160 93 ]
Let be given three points A, B, C in the Euclidean plane. Determine the fourth point D on the line BC so that AD is orthogonal to BC.

Sign in to comment.

More Answers (0)

Tags

No tags entered yet.

Community Treasure Hunt

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

Start Hunting!