Not enough input arguments

1 view (last 30 days)
Lei Zhang
Lei Zhang on 17 Jan 2013
function fout=ff(pop)
fout=pop(:,1).^2+pop(:,2).*pop(:,3)+pop(:,4);
end
Where pop is an known 100*4 matrix

Answers (1)

Shashank Prasanna
Shashank Prasanna on 17 Jan 2013
function fout=ff(pop)
fout=pop(:,1).^2+pop(:,2).*pop(:,3)+pop(:,4);
end
>> pop = rand(100,4);
>> ff(pop)
This works perfectly fine for me.
How are you calling your function?

Categories

Find more on MATLAB in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!