필터 지우기
필터 지우기

[2017b] how to solve "Error using matlab.gra​phics.char​t.primitiv​e.Line/hor​zcat Cannot convert double value -5.21739 to a handle".

조회 수: 2 (최근 30일)
[X,Y,Z] = peaks;
figure
L3 = contour(X,Y,Z,10);
hold on
q = 0;
L1= plot (xlim,[1 1]*q,':b','LineWidth',2);
a=0
L2= plot ([1 1]*a,ylim,':k','LineWidth',2);
legend([L2 L3],{'First Time Arrival','Maximum wave peak'})
Hi..I want to show legend of particular plotted items only. But then I got error message as follow "Error using matlab.graphics.chart.primitive.Line/horzcat Cannot convert double value -5.21739 to a handle". How to solve it? Thank you

채택된 답변

Jan
Jan 2018년 4월 15일
Replace
L3 = contour(X,Y,Z,10);
by
[~, L3] = contour(X,Y,Z,10);
The first output of contour is the contour matrix, not the wanted handle.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Contour Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by