Passing 2 arguments to a command line function

In my university we have Matlab 7.0 (R14), I would like to run schedule task running some matlab functions.
From cmd line I type:
matlab -r myfunction(1,1)
The results are
>> myfunction(1
??? myfunction(1
|
Error: Incomplete or misformed expression or statement

답변 (2개)

Walter Roberson
Walter Roberson 2011년 4월 25일

2 개 추천

matlab -r "myfunction(1,1);quit"

댓글 수: 2

Ras
Ras 2011년 4월 26일
Not working, I don't pass even the dos, it replies in the cmd line:
1) was unexpected at this time.
It has something to do with the comma that is not accepted.
Which OS are you using?
Anyhow, try
matlab -r 'myfunction(1,1);quit'

댓글을 달려면 로그인하십시오.

Ras
Ras 2011년 4월 26일

0 개 추천

Same results as using "myfunction(1,1);quit"... Using windows XP professional

카테고리

도움말 센터File Exchange에서 Entering Commands에 대해 자세히 알아보기

태그

질문:

Ras
2011년 4월 25일

Community Treasure Hunt

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

Start Hunting!

Translated by