Why this error with `axis`
6 次查看(过去 30 天)
显示 更早的评论
>> 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')
0 个评论
回答(2 个)
Star Strider
2018-10-9
‘... 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 个评论
Star Strider
2018-10-9
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.
Stephen23
2018-10-9
编辑:Stephen23
2018-10-9
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 个评论
Stephen23
2018-10-9
编辑:Stephen23
2018-10-9
"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).
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Software Development Tools 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!