Borrar filtros
Borrar filtros

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

2 visualizaciones (últimos 30 días)
How to save a vector v=[1 2 3 4]; into a text file. How to do that? [Hint use save] in matlab?

Respuesta aceptada

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

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Characters and Strings en Help Center y File Exchange.

Etiquetas

Aún no se han introducido etiquetas.

Community Treasure Hunt

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

Start Hunting!

Translated by