how to use the output of a 1st part of a program to the 2nd part of the same program as a input?

1 view (last 30 days)
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 Comment
Stephen23
Stephen23 on 15 Sep 2018
Simple:
  1. 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).
  2. Return the required values from the first function as output arguments.
  3. Input those values to the second function as input arguments.

Sign in to comment.

Accepted Answer

KALYAN ACHARJYA
KALYAN ACHARJYA on 15 Sep 2018
%First Part
function ......
end
%2nd Part
%Call the function
%Do finding
  4 Comments
KALYAN ACHARJYA
KALYAN ACHARJYA on 25 Sep 2018
OK, Yes Why Not, Better to ask the question as a new one, so that other user also get notified about the question.

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!