Problem with using 'DisplayName' property in fplot()
조회 수: 6 (최근 30일)
이전 댓글 표시
Hello everbody,
I wrote a function to plot a limit value in a existing figure. You can see it below. This function works well without using 'DisplayName' in fplot().
If I want to use 'DisplayName' I have got the following error:
Error using plot
Error in color/linetype argument.
Error in fplot (line 154)
plot(xx,y,marker,'parent',cax)
Error in limits (line 48)
fplot(f, axes.XLim, 'DisplayName', 'Test')
Can someone help me to fix this problem.
Thank you in advance,
Lennart
function limits(fig, standard)
%% Code
axes = fig.CurrentAxes;
axes.NextPlot = 'add';
if strcmp(standard, 'ECE R10 10m QuasiPeak')
f1 = @(x) 32;
f2 = @(x) 32 + 15.13 .* log10(x/75000000);
f3 = @(x) 43;
elseif strcmp(standard, 'ECE R10 10m Average')
f1 = @(x) 22;
f2 = @(x) 22 + 15.13 .* log10(x/75000000);
f3 = @(x) 33;
elseif strcmp(standard, 'ECE R10 3m QuasiPeak')
f1 = @(x) 42;
f2 = @(x) 42 + 15.13 .* log10(x/75000000) ;
f3 = @(x) 53;
elseif strcmp(standard, 'ECE R10 3m Average')
f1 = @(x) 32;
f2 = @(x) 32 + 15.13 .* log10(x/75000000) ;
f3 = @(x) 43;
elseif strcmp(standard, 'ECE R10 EUB QuasiPeak')
f1 = @(x) 62 - 25.13 .* log10(x/3000000);
f2 = @(x) 52 + 15.13 .* log10(x/75000000) ;
f3 = @(x) 63;
elseif strcmp(standard, 'ECE R10 EUB Average')
f1 = @(x) 52 - 25.13 .* log10(x/3000000);
f2 = @(x) 42 + 15.13 .* log10(x/75000000) ;
f3 = @(x) 53;
else
error('Dies ist kein vorhandener Grenzwert!')
end
f = @(x) f1(x).*((30000000 <= x) & (x <= 75000000)) + f2(x).*((75000000 < x) & (x < 400000000)) + f3(x).*((400000000 <= x) & (x < 1000000000));
fplot(f, axes.XLim, 'DisplayName', 'Test')
end
댓글 수: 2
Robert U
2020년 7월 23일
Problem seems not to be "DisplayName" property but the limits given by axes.XLim.
Kind regards,
Robert
답변 (1개)
madhan ravi
2020년 7월 23일
편집: madhan ravi
2020년 7월 23일
F = fplot(f);
set(F, 'DisplayName', 'Test')
댓글 수: 8
참고 항목
카테고리
Help Center 및 File Exchange에서 Line Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!