Matlab error in Windows prompt

1 次查看(过去 30 天)
I am trying to run a matlab function from windows command line using the following:
matlab -r "UDP_WiFi_1 1500 19.3 7 12000000;exit"
the function is called UDP_WiFi_1 and it takes 4 scalar parameters. This function runs fine without any error if called in matlab command line. However, if it is called from windows command line, it opens matlab and then gives the following error:
Error using /
Matrix dimensions must agree
It is weird because all the parameters are scalar and I don't have any matrix, any help is highly appreciated!

采纳的回答

Steven Lord
Steven Lord 2018-1-7
"It is weird because all the parameters are scalar"
Not the way you're calling your function. You're calling it using command syntax which means the first input to your function is '1500' (a 1-by-4 char vector) rather than 1500 (a 1-by-1 double scalar.) You want to call it using function syntax instead:
matlab -r "UDP_WiFi_1(1500, 19.3, 7, 12000000);exit"

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Get Started with MATLAB 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by