How to return multiple variables in a function call in MATLAB R 2015b?

6 次查看(过去 30 天)
I have written a function as written below. function [avgfit,pipop,bestfit]= gafitness(psz,n,pop)
But when i called this function in another script m-file , with the following line [avgfit,pipop,bestfit]= gafitness(psz,n,pop); it is returning only the fist output variable(avgfit).other output variables (pipop,besrfit) are shown as undefined.
I want to know how to modify the function call to return multiple output variables.
  3 个评论
Jan
Jan 2018-11-6
What does "shown as undefined" mean? Please post the complete error message, if there is one.
Kallam Haranadha Reddy
This is the function definition.
function [ avgfit,fitpop,pipop,bestfit] = InvClassifyGAFitnessFunc( classGA,ClassDM )
-------
------
code
-----
-----
fitpop = (1/t)*sum(pipop(i,1));
avgfit=fitpop;
%fitpop=1/fitpop;
bestfit=max(pipop);
end
This is the function call in the script file
ABC_GA
[pipop,fitpop, avgfit,bestfitt ] = InvClassifyGAFitnessFunc( classGA,ClassDM );
when i ran this ,it is displaying the error message Undefined function or variable 'bestfit'.
Error in ABC_GA (line 30) bestfit;

请先登录,再进行评论。

采纳的回答

Steven Lord
Steven Lord 2018-11-6
First, the order of the output arguments in your function definition and in your function call are different. That's a flag to me that you may not be storing the data you expect into the variable you expect. Just because the names you use in your function call match the names in the function definition does not mean that MATLAB will automatically return the data in the order in your call. The contents of the variable avgfit (the first output in your function declaration) from inside the function will be stored in the variable pipop (the first output in your function call) in the calling function not the third (because the name avgfit is in the third output position in your function call.)
Second, in your function call the fourth output argument is named bestfitt, with two t's at the end. The error message says that the variable bestfit with one t at the end is undefined. Fixing that typo will eliminate the error message on that line, but because of the first issue I mentioned it may not make your function work as expected.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Variables 的更多信息

产品


版本

R2015b

Community Treasure Hunt

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

Start Hunting!

Translated by