how to use passing by value and passing by reference
Show older comments
Basically i have many variables in my code , so i want to use in my function just passing by value and reference. Can anybody tell me with example.
Accepted Answer
More Answers (1)
James Tursa
on 30 Oct 2019
0 votes
In the background, MATLAB effectively passes all variables into functions as shared data copies. This has the same effect as passing by reference for variables that you don't modify inside the function, i.e. you don't get a deep data copy. Is this what you are asking about?
2 Comments
RAHUL KUMAR
on 30 Oct 2019
Steven Lord
on 30 Oct 2019
Can you tell us a bit more information about how you've defined your function, how you're trying to call it, and the particular problem / pain / difficulty you're experiencing when trying to call it? With a bit more information we may be able to suggest an easier / faster / "better" solution for calling your function.
Categories
Find more on Data Type Identification in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!