Self-written function does not work when changing input names

1 visualización (últimos 30 días)
Zoe
Zoe el 21 de Mayo de 2018
Comentada: Ameer Hamza el 21 de Mayo de 2018
I wrote a function shown below. When I want to enter my input (xnew,ynew) instead of (x,y) , this function would not work. I understand the reason (because my code specifies (x,y)), but do not know how to fix it. Please help. Thank you!
function rline(x,y)
%syntax:
% rline(x,y)
line(x, y, 'Color', 'r', 'LineStyle', '--', 'LineWidth', 2)

Respuesta aceptada

Ameer Hamza
Ameer Hamza el 21 de Mayo de 2018
Editada: Ameer Hamza el 21 de Mayo de 2018
Have you defined xnew and ynew before calling the function rline(). The name of input to the function at the definition and calling time does need to be same. Try this
xnew = 1:10;
ynew = xnew.^2;
rline(xnew, ynew);

Más respuestas (0)

Categorías

Más información sobre Develop Apps Using App Designer 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