Extendable, but bacward compatible M code.
2 次查看(过去 30 天)
显示 更早的评论
What is the best way of creating M code that can easily be extended, but will remain backward compatible? When creating code, it is beneficial to try to predict future use along with the present use, e.g., which parameters could potentially be of interest to the user.?
It is not possible to predict all parameters that potentially will be changed by future users. How can my M code deal with this problem and still be simple and easy to read?
One solution is to include a struct as parameter to the function. This struct can be extended by new fields, if required.
0 个评论
采纳的回答
Martijn
2011-2-25
Working with structures is indeed an option. Other options include working with VARARGIN and VARARGOUT:
http://www.mathworks.com/help/techdoc/ref/varargin.html http://www.mathworks.com/help/techdoc/ref/varargout.html
Or you could consider working with the inputParser which allows easy implementation of 'parameter', value pairs:
(You could easily add new optional fields later on)
0 个评论
更多回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!