about function argument

1 次查看(过去 30 天)
memorial
memorial 2011-2-28
Hi, I am defining a function.I want to pass a network (that i have trained and tested) to the function as an argument. So in the function i can use the network for prediction. How should i do this? can neural network be sent to a function as an argument?
Best,

采纳的回答

Laurens Bakker
Laurens Bakker 2012-3-7
Yes you can. MATLAB is not a typed language, so you could write something like:
function [outputs] = foo ( myNeuralNet, otherInputs )
% do something with your inputs
end
and of course you are free to give the outputs and inputs any names you like.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Deep Learning Toolbox 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by