Function with value after string

1 Ansicht (letzte 30 Tage)
Alejandro Fernández
Alejandro Fernández am 26 Jul. 2020
Hi, i want to create a function with the same idea as the plot function when you write 'Marker' and then you put '+' it recognize de marker type, or when you put 'MarkerSize',15 etc.
In my case I need:
  • 'method','...'
  • 'scale',..
  • 'plott',..
Does someone know how to implement that?

Akzeptierte Antwort

Alejandro Fernández
Alejandro Fernández am 26 Jul. 2020
I found the solution, thank you so much.
if isempty(find(strcmpi(varargin,'method'), 1))
method = 'csape';
else
method = varargin{find(strcmpi(varargin,'method'), 1)+1};
end

Weitere Antworten (0)

Kategorien

Mehr zu Graphics Objects finden Sie in Help Center und File Exchange

Produkte


Version

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by