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

2 次查看(过去 30 天)
How to save a vector v=[1 2 3 4]; into a text file. How to do that? [Hint use save] in matlab?

采纳的回答

KSSV
KSSV 2016-10-17
v=[1 2 3 4];
save('myfile.txt','v','-ascii')
  5 个评论
KSSV
KSSV 2016-10-17
If no error pops...in the folder you are working....a txt file called data will be created with vector v in the file.
Gemalyn Apostol
Gemalyn Apostol 2016-10-17
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.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Characters and Strings 的更多信息

标签

尚未输入任何标签。

Community Treasure Hunt

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

Start Hunting!

Translated by