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