Simplest way to save a vector to a variable with commas and braces
Show older comments
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
Accepted Answer
More Answers (1)
Bhaskar R
on 27 Feb 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 Comments
Vinay Killamsetty
on 27 Feb 2020
Edited: Vinay Killamsetty
on 27 Feb 2020
Stephen23
on 27 Feb 2020
"We have to add commas and braces to the vector."
Why? What is the purpose of this?
Categories
Find more on Data Types in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!