How can I fix the problem about saving?

2 views (last 30 days)
Hi everyone,
I have a problem like this
save(strcat('dvhmatrixB','.mat'),dvhmatrixB)
??? Error using ==> save
Argument must contain a string
Why the matlab does not work? Thanks for your help!

Accepted Answer

thu nguyen
thu nguyen on 31 Oct 2019
Yeah, It works. Thank you so much. I missed declaring 'string' for variable.

More Answers (1)

Sai Bhargav Avula
Sai Bhargav Avula on 31 Oct 2019
Edited: Sai Bhargav Avula on 31 Oct 2019
Hi, save('dvhmatrixB','dvhmatrixB');
This will save dvhmatrixB in dvhmatrixB.mat file
Hope this helps

Categories

Find more on Characters and Strings 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!