how to use the functions
6 次查看(过去 30 天)
显示 更早的评论
I'm doing an exercise with fem and i have 4 function. How do I use them one after the other to get a final result at the end?
0 个评论
采纳的回答
Walter Roberson
2016-11-10
temp1 = first_function(YourInput);
temp2 = second_function(temp1);
temp3 = third_function(temp2);
output = fourth_function(temp3);
3 个评论
Walter Roberson
2016-11-10
If kernel() does not have any inputs, then
temp1 = kernel();
temp2 = kernelII(temp1);
temp3 = kernelIII(temp2);
output = kernelIV(temp3);
Note: I used this form with assigning to variables each time because it can generalize to functions that have multiple outputs, such as
[temp1a, temp1b] = kernel();
temp2 = kernelII(temp1a, temp1b);
In the case where there is only ever one input and one output, you can use
output = kernelIV( kernelIII( kernelII( kernel() ) ) )
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Deep Learning Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!