why we use same parenthesis for function calling and array?
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
deepak
el 22 de Oct. de 2012
Comentada: Manuel Rojas
el 8 de Ag. de 2020
a=fun(1,2) is used to call function fun and at the same time we use fun=randi(3,3) a=fun(1,2) to extract 1st row 2nd column of fun
1 comentario
Respuesta aceptada
Andrei Bobrov
el 22 de Oct. de 2012
Editada: Andrei Bobrov
el 22 de Oct. de 2012
function out = yourfun(a,b)
m = randi(3,3);
out = m(a,b);
end
or
function out = yourfun2(a,b)
global m;
out = m(a,b);
end
% example use function yourfun2
>> global m
>> m = randi(3,3);
>> out = yourfun2(1,2);
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Matrix Indexing en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!