Borrar filtros
Borrar filtros

Separating arguments by line break

30 visualizaciones (últimos 30 días)
Steeven
Steeven el 8 de Feb. de 2018
Editada: Steeven el 8 de Feb. de 2018
When writing a function with arguments, can the arguments be separated by a line break in some way (in the same way that they can be separated by whitespace characters such as space or tabulator indentation? And example is to go from the code line
choice = inputdlg(prompt,dlg_title,num_lines,defaultans);
to the (non-working) lines
choice = inputdlg(
prompt,
dlg_title,
num_lines,
defaultans
);
The error shown in this particular case is (it starts at line 9):
Error: File: MultipleDataFiles.m Line: 9 Column: 19
Expression or statement is incorrect--possibly unbalanced (, {, or [.
  2 comentarios
Stephen23
Stephen23 el 8 de Feb. de 2018
Did you try it? What happened?
Steeven
Steeven el 8 de Feb. de 2018
Editada: Steeven el 8 de Feb. de 2018
@StephenCobeldick Yes, it gives an error. See the update.

Iniciar sesión para comentar.

Respuesta aceptada

Stephen23
Stephen23 el 8 de Feb. de 2018
Editada: Stephen23 el 8 de Feb. de 2018
Adding ellipses might help you:
choice = inputdlg(...
prompt,...
dlg_title,...
num_lines,...
defaultans);

Más respuestas (0)

Categorías

Más información sobre Scope Variables and Generate Names en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by