how to solve the error "Not enough input arguments." please tell me how can I solve this problem
조회 수: 2 (최근 30일)
이전 댓글 표시
when I run this code it gives an error message as "input arguments are not enough". what can I do?
댓글 수: 0
채택된 답변
Stephen23
2018년 3월 21일
편집: Stephen23
2018년 3월 21일
Do NOT use the big green "Run" button. That button is the worst design decision in the history of MATLAB: ignore that button. You should call your function by typing it in the command window (or in another script/fucntion/...) together with its required input values, and then pressing enter.
It works for me without any error:
>> convert2GPS([1,2,3,4])
ans =
112.2153 63.4349 4.0000
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Automated Driving Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!