why we use same parenthesis for function calling and array?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
deepak
am 22 Okt. 2012
Kommentiert: Manuel Rojas
am 8 Aug. 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 Kommentar
Akzeptierte Antwort
Andrei Bobrov
am 22 Okt. 2012
Bearbeitet: Andrei Bobrov
am 22 Okt. 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 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!