Error: Too many output arguments.
Show older comments
I am trying to call a function to calculate timber lengths however every time i do it returns the error of 'Too many output arguments'. I am running Matlab R2017a.
% Calculate total timber lengths needed
total_length = no_of_wall_studs * GET_NEAREST_LENGTH(wall_height);
total_length = total_length + (top_plates * GET_NEAREST_LENGTH(wall_width));
% Function to calculate timber length
function GET_NEAREST_LENGTH(length)
timber_length = MAX_WALL_WIDTH;
% Check is length is minimum
if length <= MIN_TIMBER_LENGTH
length = MIN_TIMBER_LENGTH;
end
% Start at 5.4 and work down to find the correct length
while length < (timber_length-INC)
timber_length = timber_length-INC;
end
end
any help is appreciated
Accepted Answer
More Answers (0)
Categories
Find more on Programming in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!