changing a loop to a function

for x = 1:100
for y = 1:61
b = abs(bsxfun(@minus,q{x},kevin))
s{x,y} = b;
end
end
How do I incorporate the above code as function?
the variables kevin and q are already loaded on the workspace.
thanks

 Respuesta aceptada

Azzi Abdelmalek
Azzi Abdelmalek el 21 de Dic. de 2014
Editada: Azzi Abdelmalek el 21 de Dic. de 2014

0 votos

function s=yourfunction(q,kevin)
for x = 1:100
for y = 1:61
b = abs(bsxfun(@minus,q{x},kevin))
s{x,y} = b;
end
end
save this file as yourfunction.m
To call this function
q= % assign value to q
kevin= % assign value to kevin
s=yourfunction(q,kevin)

Más respuestas (0)

Categorías

Más información sobre Loops and Conditional Statements en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

AA
el 21 de Dic. de 2014

Editada:

el 21 de Dic. de 2014

Community Treasure Hunt

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

Start Hunting!

Translated by