Having trouble getting function to return two values

71 vues (au cours des 30 derniers jours)
Patrick Keiffer
Patrick Keiffer le 12 Avr 2018
Commenté : Josué Ortega le 6 Avr 2020
Hello, I wrote a simple function that takes in a wavelength as input and spits out the corresponding absorption and emission cross-sections pulled from an imported text file. The code seems to work fine but when calling the function only the first of the output variables seems to be saved. I would like the function to save both variables to the workspace so that they may be used in other code. Any ideas on what I am doing wrong? Thanks in advance. Below is my code:
function [cross_abs, cross_emm] = cross(lambda)
%This function is used to calculate the absorption cross section and
%emmision cross section for the given wavelength lambda
%Note that the unit of the lambda here should be nm
load absorption_cross.txt;
load emission_cross.txt;
%lambda=lambda*1e9;
if length(lambda)==1
if lambda>1890
cross_abs=2.181e-26; %unit is m^2
cross_emm=2.423e-25;
else
if lambda<900
cross_abs=0.5761e-24;
cross_emm=0;
end
end
cross_abs=interp1(absorption_cross(:,1)',absorption_cross(:,2)',lambda,'spline')*1e-24;
cross_emm=interp1(emission_cross(:,1)',emission_cross(:,2)',lambda,'spline')*1e-24;
end

Réponse acceptée

Birdman
Birdman le 12 Avr 2018
Probably you are calling function with one output argument, like
y = cross(lambda)
or none,
cross(lambda)
You should be calling like
[cross_abs, cross_emm] = cross(lambda)
  2 commentaires
Patrick Keiffer
Patrick Keiffer le 12 Avr 2018
Thanks, Birdman!
Josué Ortega
Josué Ortega le 6 Avr 2020
Same problem, but my function returns all cycles in a graph, so the answer is sometimes one vector, sometimes two, and so on. How to save them all if I do not know ex-ante the size of the answer?

Connectez-vous pour commenter.

Plus de réponses (1)

James Tursa
James Tursa le 12 Avr 2018
Modifié(e) : James Tursa le 12 Avr 2018
Your code has a path where nothing gets assigned to the output variables. Also, even for the path that does assign the output variables, all of the if-then-else results for the output variables gets overwritten. Is this intended?
And if you call this function a lot, it is going to be slow because of the load's you execute each time it is called. Best to do this once outside the function and pass in the appropriate variables that are needed.

Catégories

En savoir plus sur Matrix Indexing dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by