Why this error with `axis`

13 visualizaciones (últimos 30 días)
Pankaj
Pankaj el 9 de Oct. de 2018
Editada: Stephen23 el 9 de Oct. de 2018
>> axis('limits',[0 60 0 50 0.13 0.23],'style', 'square')
The above produces following error error-
Error using axis (line 2)
Unknown command option limits.
where as following does not
axis([0 60 0 50 0.13 0.23], 'square')
From here limits and style, both are legitimate properties.

Respuestas (2)

Star Strider
Star Strider el 9 de Oct. de 2018
‘... limits and style, both are legitimate properties’
They are. However you have to call them separately:
figure
surf( ... )
axis([0 60 0 50 0.13 0.23])
axis('square')
  5 comentarios
Pankaj
Pankaj el 9 de Oct. de 2018
May be I would. Anyways, thanks @strider.
Star Strider
Star Strider el 9 de Oct. de 2018
My pleasure.
Note that I was addressing the name-value pair argument issue, not combining multiple commands in one axis call, that I have also done successfully in the past.

Iniciar sesión para comentar.


Stephen23
Stephen23 el 9 de Oct. de 2018
Editada: Stephen23 el 9 de Oct. de 2018
The actual answer is that you can combine multiple inputs, but that those inputs are not name-value inputs (like many other MATLAB functions use): for axis you only need the values by themselves:
axis([0,60,0,50,0.13,0.23],'square')
The reason names are not required is because none of the inputs are ambiguous, what their purposes are. It is worth noting that some other functions also use this method of supplying multiple input arguments, in particular regexp, regexpi, regexprep, where the input arguments are unambiguous in any order. The functions which and load also allow (at least some of) their options to be given in different orders, although this is not documented. There might be other functions...
Nowhere in the axis help does it mention using names, as you are doing.
However the axis help does clearly state that you can use multiple inputs: "You can combine multiple input arguments together, for example, axis image ij. The options are evaluated from left to right. Subsequent options can overwrite properties set by prior ones."
  2 comentarios
Pankaj
Pankaj el 9 de Oct. de 2018
I know that combine multiple inputs but we are habitual of using key-values and most of the functions do use key-values. And that is the source of my confusion, why MathWorks has designed this function in peculiar way.
Stephen23
Stephen23 el 9 de Oct. de 2018
Editada: Stephen23 el 9 de Oct. de 2018
"why MathWorks has designed this function in peculiar way."
For the "convenience", I suspect. But if you want to know why, you would have to ask its author.
As I noted in my answer, other MATLAB functions also use this input method, as values without names (in particular the regexp family of functions).

Iniciar sesión para comentar.

Categorías

Más información sobre Lighting, Transparency, and Shading en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by