How do i use output of one function as input to the other ?

1 次查看(过去 30 天)
suppose i have
function p= pos(x,y)
x=x+y;
p=x;
end
and another function
funtion z=neg(p,q) ----> How do I do this where I am passing p which is output of pos as input argument for neg?
c=p-q;
end

回答(1 个)

James Tursa
James Tursa 2020-11-24
You can do this at the point where you are calling the function neg. E.g.,
z = neg(pos(x,y),q);

类别

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

Community Treasure Hunt

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

Start Hunting!

Translated by