Info

この質問は閉じられています。 編集または回答するには再度開いてください。

i got this error

1 回表示 (過去 30 日間)
RAMANJANEYAREDDY G
RAMANJANEYAREDDY G 2019 年 4 月 20 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
Attempt to execute SCRIPT contour as a function:
C:\MATLAB\SupportPackages\R2016a\contour.m
Error in contour (line 3)
contour(X,Y,Z),xlabel('x'),ylabel('y')

回答 (2 件)

madhan ravi
madhan ravi 2019 年 4 月 20 日
編集済み: madhan ravi 2019 年 4 月 20 日

Image Analyst
Image Analyst 2019 年 4 月 20 日
You appear to have a script called contour.m. This script takes no arguments - that's why it's a script and not a function. Unfortunately you called this the same name as a built-in function called contour() and you seem to be wanting to call the built-in function countour() from your script also called contour. But when you called your script contour, this takes precendence over the built-in function, so on line 3 when you call contour(X, Y, Z), it's calling your script instead of the built in contour() function. (To add insult to injury, it's trying to call it recursively) However your script contour does not take/accept any arguments like X, Y, or Z, so that's why you get the error.
Rename your script to contour_test.m and it should work (as long as you define X, Y, and Z.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by