why we use same parenthesis for function calling and array?

5 views (last 30 days)
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

Accepted Answer

Andrei Bobrov
Andrei Bobrov on 22 Oct 2012
Edited: Andrei Bobrov on 22 Oct 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 Comments
deepak
deepak on 22 Oct 2012
while we using in c we {} for array () for function but in matlab we use same parenthesis why the developer did so

Sign in to comment.

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!