help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

getting (only) the 3th output argument


From: Martijn
Subject: getting (only) the 3th output argument
Date: Mon, 21 Jun 2010 15:50:01 +0200

Hi,
I would like to perform an integration on the third/fourth output
argument of an existing function with several in- and output variables:

[y1, y2, y3] = f(x1, x2, x3)
int y3(dx3)

the multiple input variable part is easily solved usin an anonymous
function.

Is there a function that returns the n-th output variable of function
with multiple output variables?
Or do I have to write a wrapper function like

function y3=F(x3)
  [y1, y2, y3] = f(x1, x2, x3)
end

Bye,

Martijn



reply via email to

[Prev in Thread] Current Thread [Next in Thread]