- Convert those scripts to functions (scripts are used by beginners because they want to see all their data in the workspace viewer. Functions are used by experienced users because they want their code to work).
- Return the required values from the first function as output arguments.
- Input those values to the second function as input arguments.
how to use the output of a 1st part of a program to the 2nd part of the same program as a input?
2 次查看(过去 30 天)
显示 更早的评论
suppose i need the output of the file "img-acqi.m" as a input of the "gabor_fn.m" in a single program. Here the code is spllitted in two parts but i want to merge them all together.
1 个评论
Stephen23
2018-9-15
Simple:
采纳的回答
KALYAN ACHARJYA
2018-9-15
%First Part
function ......
end
%2nd Part
%Call the function
%Do finding
4 个评论
KALYAN ACHARJYA
2018-9-25
OK, Yes Why Not, Better to ask the question as a new one, so that other user also get notified about the question.
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!