Select xlim max-value
10 ビュー (過去 30 日間)
古いコメントを表示
Is it possible to return the xlim max directly with a oneliner? Rigth now I am using:
xmax = xlim
max = xmax(2)
I am guessing that I can access the max-value directly but I can't figure out how.
0 件のコメント
採用された回答
Fangjun Jiang
2018 年 9 月 18 日
max() is a function. Don't use it as a variable name.
xmax=max(xlim)
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Point Cloud Processing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!