필터 지우기
필터 지우기

Matlab R2014b with OS X Yosemite Issue

조회 수: 1 (최근 30일)
Austin Baird
Austin Baird 2014년 11월 21일
I am trying to use the plane program and keep getting the following error when I run it:
Error using figure
There is no numb property on the Figure class.
Error in pplane8 (line 398)
ppset = figure('name','pplane8 Setup','numb','off',...
Any ideas on what I should do? I've tried two separate Macs on Yosemite and it does the same thing.
  댓글 수: 13
Walter Roberson
Walter Roberson 2015년 5월 19일
I looked at the code and saw that it was trying to create a string containing the figure number. I looked at the documentation for Figure Properties and saw that there is now a Number property that returns the figure number. So get() of the Number is what was needed. The rest of the time was spent searching through the code to be sure that the problem did not occur elsewhere.
Samuel Dupree
Samuel Dupree 2015년 5월 20일
Walter,
Thank you for the explanation. I gratefully appreciate it. This clears things up for me.
Again, thanks.
Sam Dupree.

댓글을 달려면 로그인하십시오.

채택된 답변

Geoff Hayes
Geoff Hayes 2014년 11월 21일
Austin - try changing the numb to the full property name NumberTitle. So line 398 of pplane8 would become
ppset = figure('name','pplane8 Setup','NumberTitle','off',...
'tag','pplane8','visible','off',...
'UserData',ud);
Note the change also from user to UserData. See figure window properties for more details.
  댓글 수: 7
Geoff Hayes
Geoff Hayes 2015년 7월 9일
Try typing just
get(dud.axes)
to see which properties are available. If you don't see something for 'user' then you may have to use UserData.
Daniel Sierra
Daniel Sierra 2015년 7월 9일
Thanks Geoff it worked! i also had to make a few changes that i haven't read from this forum but so far it seems to work just fine!

댓글을 달려면 로그인하십시오.

추가 답변 (2개)

Hugh Harvey
Hugh Harvey 2017년 2월 17일
Hi, I have gone through and made all these changes to Pplane - Please see link for updated version: http://uk.mathworks.com/matlabcentral/fileexchange/61636-pplane

Jakob
Jakob 2016년 6월 21일
Very good work everyone. The pplane-tool is extremely useful! Great you made it work again in newer Matlab!! Cannot give enough kudos ;-)

카테고리

Help CenterFile Exchange에서 Introduction to Installation and Licensing에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by