How to auto save workspace variable with specific path and filename without Popup?

d = 'Sunday'; y = 2017;
path = 'E:\Matlab\';
filenam = 'Data';
% uisave({'d','w'},path) % this works with path but ask for filename
% uisave({'d','y'},filenam) % this works with filename but ask where to save
uisave({'d','y'},filenam,path) % i want to save this data without asking anything from user.
% if any other function can do desired task it would be acceptable

 採用された回答

Les Beckham
Les Beckham 2023 年 10 月 27 日
Have you tried using save?
For example:
d = 'Sunday'; y = 2017;
filepath = 'E:\Matlab\';
filename = 'Data';
save(fullfile(filepath, filename), 'd', 'y')
Also do not name a variable path. That is a very important built-in function in Matlab. Overloading that will break a lot of things.

3 件のコメント

taimour sadiq
taimour sadiq 2023 年 10 月 27 日
Yes you point the right mistake of path... ur code works according to my requirement. Thanks
Les Beckham
Les Beckham 2023 年 10 月 28 日
You are quite welcome.
Les Beckham
Les Beckham 2023 年 10 月 28 日
Also, if you are just getting started with Matlab, I would highly recommend that you take a couple of hours to go through the free online tutorial: Matlab Onramp

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeDevelop Apps Programmatically についてさらに検索

製品

リリース

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by