Azzera filtri
Azzera filtri

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

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

Risposta accettata

KSSV
KSSV il 17 Ott 2016
v=[1 2 3 4];
save('myfile.txt','v','-ascii')
  5 Commenti
KSSV
KSSV il 17 Ott 2016
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 il 17 Ott 2016
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.

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Characters and Strings in Help Center e File Exchange

Tag

Non è stata ancora inserito alcun tag.

Community Treasure Hunt

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

Start Hunting!

Translated by