フィルターのクリア

uiwait, msgbox, listdlg are not working properly in Matlab 2013a with Windows 7

2 ビュー (過去 30 日間)
I have recently started using the Matlab 2013a with Windows 7. I have observed that some of the basic matlab functionalities are not working as expected, even with the examples in the documentation.
uiwait is completely stopped working, i need to use the waitfor function for some of the things -
UI Wait :
Error using set
Too many input arguments.
Error in uiwait (line 71)
set (hFigDlg, 'Visible', 'on', 'WaitStatus', 'waiting');
listdlg is popup and closes immediately, without waiting for the user inputs.
Plot Example:
x = -pi:0.1:pi;
y = sin(x);
plot(x,y);
title('Sine Function')
----------
Error using set
Too many input arguments.
Error in title (line 47)
set(h, 'FontAngle', get(ax, 'FontAngle'), ...
Error in title (line 23)
h = title(gca,varargin{:});
Is any thing supported software need to install, like vc_*.exe or any java version..?

採用された回答

Walter Roberson
Walter Roberson 2020 年 8 月 4 日
What shows up for
which -all set
In particular you should be interested in anything that is not marked as a java method or built-in method, and which is not underneath a directory that starts with an @
Probably the item of interest will be the first one on the list.
My hypothesis is that you will find that you have a third party toolbox set.m early on your path.
  1 件のコメント
Kanchibhotla Chandra Sekhar
Kanchibhotla Chandra Sekhar 2020 年 8 月 4 日
Perfect, I have written a function "set" as undefined function which is also a standard function. I have figured it out while in process of debugging.
Thanks a lot, i helped to analysis in easiest way.
Now i have changed and it is working fine. Thank you.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeInteractive Control and Callbacks についてさらに検索

タグ

製品


リリース

R2013a

Community Treasure Hunt

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

Start Hunting!

Translated by