Simplest way to save a vector to a variable with commas and braces
Afficher commentaires plus anciens
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
Réponse acceptée
Plus de réponses (1)
Bhaskar R
le 27 Fév 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 commentaires
Vinay Killamsetty
le 27 Fév 2020
Modifié(e) : Vinay Killamsetty
le 27 Fév 2020
Stephen23
le 27 Fév 2020
"We have to add commas and braces to the vector."
Why? What is the purpose of this?
Catégories
En savoir plus sur String Parsing dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!