Filter löschen
Filter löschen

'Execution of script contour as a function is not supported'

19 Ansichten (letzte 30 Tage)
Finlay Macdonald
Finlay Macdonald am 22 Mär. 2022
Kommentiert: Finlay Macdonald am 22 Mär. 2022
trying to plot a compressor map with contours, when trying to run my code the error 'Execution of script contour as a function is not supported' shows up.
what does this mean?
my code fo the contour plot is
x = mdot(1,:,1);
y = PR(1,:,1);
[X,Y] = meshgrid(x,y);
Z = e(1,:,1);
contour(X,Y,X)
mdot, PR and e are all 1,5,5 doubles
the error also occurs when trying to run any of the contour examples from matlab.

Antworten (1)

Fangjun Jiang
Fangjun Jiang am 22 Mär. 2022
You must have a contour.m in the path that is shadowing the built-in function contour(). run
which -all contour
  4 Kommentare
Fangjun Jiang
Fangjun Jiang am 22 Mär. 2022
Run the above command in MATLAB Command Window. It will show you multiple files. You need to rename your own contour.m to something else to avoid the name conflict.
Finlay Macdonald
Finlay Macdonald am 22 Mär. 2022
ah i see now, thank you both

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Contour Plots finden Sie in Help Center und File Exchange

Produkte


Version

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by