Borrar filtros
Borrar filtros

Matlab error in Windows prompt

1 visualización (últimos 30 días)
Mustafa Al-tekreeti
Mustafa Al-tekreeti el 7 de En. de 2018
Editada: Walter Roberson el 7 de En. de 2018
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!

Respuesta aceptada

Steven Lord
Steven Lord el 7 de En. de 2018
"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"
  1 comentario
Mustafa Al-tekreeti
Mustafa Al-tekreeti el 7 de En. de 2018
Thank you very much Steven, it solves the problem

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Get Started with MATLAB en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by