Borrar filtros
Borrar filtros

Why doesn't my function work?

1 visualización (últimos 30 días)
Julen Vicente Pipaon
Julen Vicente Pipaon el 7 de Mzo. de 2021
Comentada: Julen Vicente Pipaon el 7 de Mzo. de 2021
This is how I call my function.
>> X=4;
>> pepe(X)
But it tells me: Undefined function or variable 'pepe'.
I don't know what I am doing wrong.
THIS IS MY CODE:
function [i,j,n] = pepe(X)
n=0;
for i=1:X
for j=1:X
a(i,j)= 1+n;
n = n+1;
end
end
for i=2:X
for j=1:X
a(i,j)= a(i-1,j)
end
end
n=2;
for j=1:X
for i=n:X
a(i,j)= 0
end
n=n+1;
end
end
  2 comentarios
Walter Roberson
Walter Roberson el 7 de Mzo. de 2021
Editada: Walter Roberson el 7 de Mzo. de 2021
Which file did you store function pepe in ? And is it in your current directory?
Julen Vicente Pipaon
Julen Vicente Pipaon el 7 de Mzo. de 2021
Oh. I stored it with a diferent name so thats why it wasn't working.
I thougth my code had an error.
Thank you.

Iniciar sesión para comentar.

Respuestas (0)

Categorías

Más información sobre Loops and Conditional Statements 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