Info

This question is closed. Reopen it to edit or answer.

how can i share inputs between 2 mfiles??

1 view (last 30 days)
Mohamed Ibrahim
Mohamed Ibrahim on 7 Oct 2015
Closed: MATLAB Answer Bot on 20 Aug 2021
i have 2 .m function files i need to use inputs from one function to the other The inputs value came from PSCAD software. how to do it please??

Answers (2)

Walter Roberson
Walter Roberson on 7 Oct 2015
If function F has argument X and F is calling a second function G, then F can just pass X to G
function F(X)
...
G(X)
end
  1 Comment
Mohamed Ibrahim
Mohamed Ibrahim on 7 Oct 2015
thanks to your fast response, simply my question is if i have function X that has inputs (a,b). function X call other function Y. All i need that how make function Y calls the values of (a,b) Many thanks

Star Strider
Star Strider on 7 Oct 2015
Without knowing more about the functions, I would pass them as parameters. If one function uses them as inputs and outputs some derived value that other functions use, the first function must return the derived values as outputs, for the other functions to use as arguments (inputs).
PLEASE do not pass them as global variables!
Ambiguous Questions produce ambiguous Answers, so that’s the best I can do.
  2 Comments
Mohamed Ibrahim
Mohamed Ibrahim on 7 Oct 2015
thanks to your fast response, simply my question is if i have function X that has inputs (a,b). function X call other function Y. All i need that how make function Y calls the values of (a,b) Many thanks
Star Strider
Star Strider on 7 Oct 2015
Without knowing more, this would be an outline of what I would do, assuming that ‘X’ and ‘Y’ are already defined as functions in your workspace or MATLAB path:
function Q1 = X(a,b)
Q2 = Y(a,b)
Q1 = Q2 ... and whatever operations you want to perform on it;
end
Once you pass (a,b) into ‘X’, they are available to ‘Y’ in this situation.
Then call ‘X’ from your main script workspace:
Q1 = X(a,b);
It will return whatever you told it to.

This question is closed.

Community Treasure Hunt

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

Start Hunting!