Simplest way to save a vector to a variable with commas and braces
7 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Vinay Killamsetty
el 27 de Feb. de 2020
Comentada: Stephen23
el 1 de Mzo. de 2020
How a can I save a numeric vector a= 1 2 3 4 5
as [1,2,3,4,5] (braces and commas are to be added here)
with a simple solution
0 comentarios
Respuesta aceptada
Stephen23
el 27 de Feb. de 2020
Editada: Stephen23
el 27 de Feb. de 2020
You can create a character vector:
>> strrep(mat2str(a),' ',',')
ans = [1,2,3,4,5]
which you can save however you want. But this is unlikely to be useful, or a good approach to saving data.
2 comentarios
Stephen23
el 1 de Mzo. de 2020
The follow-up question
indicates that using standard binary/text file formats would be much simpler than this pointlessly complex way of encoding data.
Más respuestas (1)
Bhaskar R
el 27 de Feb. de 2020
You can't save the variable data like that but you can store as in string format
a = '[1, 2, 3, 4, 5]'
save matfile a
load matfile
a = str2num(a)
2 comentarios
Stephen23
el 27 de Feb. de 2020
"We have to add commas and braces to the vector."
Why? What is the purpose of this?
Ver también
Categorías
Más información sobre Whos en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!