How to create a void function in MATLAB?

593 visualizaciones (últimos 30 días)
Omulus
Omulus el 9 de Jul. de 2013
I want to create a function that does not return a value, but instead plots something on a given interval.
I learned programming with C, and in C the following syntax was used: void fname(input_type inp).
What's the analogue for this in MATLAB?

Respuesta aceptada

Friedrich
Friedrich el 9 de Jul. de 2013
Editada: Friedrich el 9 de Jul. de 2013
Hi,
%void myfun(void)
function myfun()
%void myfun(double a)
function myfun(a)
So in your case something like that I guess:
function myfun(a,b)
plot(a:b)
And call it with
myfun(1,7)
  2 comentarios
Omulus
Omulus el 13 de Jul. de 2013
Thanks.
Cedric
Cedric el 13 de Jul. de 2013
Editada: Cedric el 13 de Jul. de 2013
Don't forget to [ Accept the Answer ] if it solved your 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

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by