how to solve the error "Not enough input arguments." please tell me how can I solve this problem
1 次查看(过去 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!