Error in saving Edge file?

Error using save
Unknown command option.
Error in Edge (line 280)
save(sprintf('GLM_%s_agecat_tvalues.edge',behavname),'edgemat','--ascii');

回答 (1 件)

KSSV
KSSV 2021 年 11 月 17 日
編集済み: KSSV 2021 年 11 月 17 日

0 投票

You have used two hypens before ascii, make it to single hypen and also there is a change in the sprintf command.
save(sprintf('GLM_%d_agecat_tvalues.edge',behavname),'edgemat','-ascii');

1 件のコメント

KSSV
KSSV 2021 年 11 月 17 日
It will be saved in the same folder where you run the code.

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

タグ

質問済み:

2021 年 11 月 17 日

コメント済み:

2021 年 11 月 17 日

Community Treasure Hunt

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

Start Hunting!

Translated by