Not enough input arguments in visualizing skeletal data
6 ビュー (過去 30 日間)
古いコメントを表示
How to fix the error below : Not enough input arguments.
Error in drawskt (line 8) for a=a1:a2
The code is given in the file attached.
0 件のコメント
回答 (1 件)
KSSV
2018 年 10 月 31 日
YOu must call the function by defining variables .
a1 = 1 ; % your value
a2 = 10 ; % your value
s1 = 1 ; % you value
s2 = 20 ; % your value
e1 = rand ;
e2 = rand ;
drawskt(a1,a2,s1,s2,e1,e2) ;
2 件のコメント
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!