Simplest way to save a vector to a variable with commas and braces
7 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
Stephen23
2020-2-27
编辑:Stephen23
2020-2-27
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 个评论
Stephen23
2020-3-1
The follow-up question
indicates that using standard binary/text file formats would be much simpler than this pointlessly complex way of encoding data.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Whos 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!