필터 지우기
필터 지우기

fplot() runs Documentation Example with errors

조회 수: 1 (최근 30일)
Aaron Drews
Aaron Drews 2016년 10월 18일
답변: Soma Ardhanareeswaran 2016년 10월 21일
The following code taken from the MATLAB documentation for the fplot() function results in an error when executed on R2016b on Win7 (both 64 bit):
>> fplot(@(x) sin(x))
Error using box/set.length (line 19)
box.length must be a number.
Error in box (line 11)
box_obj.length = length;
Error in fplot (line 156)
box(cax,'on');
end
The plot seems to be ok but the error is worrisome and I've not found any documentation of bugs or comments related to this in MATLAB central. Can anyone else verify or suggest a solution?

채택된 답변

Soma Ardhanareeswaran
Soma Ardhanareeswaran 2016년 10월 21일
Looks like you have a custom file called 'box.m' that is masking the original 'box.m' provided by MATLAB.
Run the following command to verify if there are multiple files with the same name:
which -all box
Remove the custom file or rename is and observe if the error persists.

추가 답변 (0개)

카테고리

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

제품

Community Treasure Hunt

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

Start Hunting!

Translated by