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

1 visualizzazione (ultimi 30 giorni)
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 Commento
Stephen23
Stephen23 il 15 Set 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.

Accedi per commentare.

Risposta accettata

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

Accedi per commentare.

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by