Dividing programmatic GUI into functions.
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hello,
I am writing a GUI programmatically. As the number of lines reached 3000 I decided to divide the code into separate parts. I copy pasted some part of the working main function into a new m file. The new function starts as below:
function [varargout]=MMPCalculations(varargin)
I call this function from the main file as:
[varargout]=MMPCalculations(varargin)
It gives error. This function is not a callback function or so. This is just a part of code written in a separate m file. I want everything created in the main file visible to the function and everything created/changed in the new file/function visible to the main file. Therefore, I have used varargin, varargout. However, It did not work. Can you please help me?
Thank you,
0 commentaires
Réponses (2)
Walter Roberson
le 1 Juin 2012
If you want "everything created in the main file visible to the function and everything created/changed in the new file/function visible to the main file" then you should be using a script rather than a function.
2 commentaires
Walter Roberson
le 2 Juin 2012
Remove the last "end" statement from all functions defined in Main.m
When you have an "end" statement matching a "function" statement then it is incompatible to use a call to a script that defines any new variable. Removing those matching "end" statements goes back to functions that are allowed to call scripts that define new variables.
Seyhan Emre Gorucu
le 4 Juin 2012
1 commentaire
Walter Roberson
le 4 Juin 2012
No, using nested functions is not compatible with "everything created in the main file visible to the function and everything created/changed in the new file/function visible to the main file". The difficult part is the "everything created/changed in the new file/function visible to the main file": the only MATLAB mechanism that can promise that is a "script" being run from an old-style function.
One of the main purposes of functions is to *prevent* the called function from interfering with the variables in the calling function, with the only linkage being the values returned by the called function. If your called function needs to change variables in the calling function then you do not have a good program design.
Voir également
Catégories
En savoir plus sur Historical Contests dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!