回答済み
Prompt user before clearing axis when using the "clear axes" context menu
@localClearAxes is an internal function within _%matlabroot%/toolbox/matlab/graph2d/private/plotSelectMode.p_ (as you can immedi...

9年弱 前 | 1

回答済み
Issue importing Java class to R17 paths but not R14
Try the suggestions listed here: <https://undocumentedmatlab.com/blog/java-class-access-pitfalls>

9年弱 前 | 0

| 採用済み

回答済み
datacursormode: how to display info about current data point in relation to all data points on the same figure?
You can get the clicked line object from event_obj.Target, and from there get the corresponding data points for the entire line:...

9年弱 前 | 0

回答済み
Set programmatically a Data Cursor in an Axes represenation in a GUI
As followup to Prashant's answer, additional information on the *undocumented/unsupported* datacursormode object's _createDatati...

9年弱 前 | 3

回答済み
datacursormode: how to permanently turn on "make new data tip"?
Although the <https://www.mathworks.com/help/matlab/ref/datacursormode.html official documentation> of the datacursormode functi...

9年弱 前 | 1

| 採用済み

回答済み
matlab getframe of single GUI panel
The <https://www.mathworks.com/matlabcentral/fileexchange/24323-screencapture-get-a-screen-capture-of-a-figure-frame-or-componen...

9年弱 前 | 1

回答済み
GUI slows down when plotting to figure sequentially
You might find the tips mentioned in the following articles useful - many of them deal directly with graphics performance: *...

9年弱 前 | 1

回答済み
find function(s) within string
There are various ways this can be done, as explained here: <https://undocumentedmatlab.com/blog/function-definition-meta-info> ...

9年弱 前 | 0

回答済み
How to put condition (based on a property) in a property accessor
I suggest that you create a setter method for color that will check the relevant condition, for example: function set.color...

9年弱 前 | 0

回答済み
How do I label a contour plot in the same colors as the contour lines?
There is no need to use Java, just to use the two hidden (undocumented/unsupported) properties *TextPrims* (the text label handl...

9年弱 前 | 5

| 採用済み

回答済み
What are the internal differences between Matlab strings and character arrays?
The new strings are simply Matlab classes (MCOS objects), that extend 3 superclasses (matlab.mixin.internal.MatrixDisplay, matla...

9年弱 前 | 4

回答済み
Matlab freeze when using a file dialog selection
The reason and the solution are explained here: http://undocumentedmatlab.com/blog/solving-a-matlab-hang-problem It seems tha...

9年弱 前 | 0

回答済み
How do I change the border style of a pushbutton with findjobj?
Read this: <http://undocumentedmatlab.com/blog/customizing-uicontrol-border> For a list of available border types, read the <...

9年弱 前 | 1

回答済み
Break both axis simultaneously
breakxaxis is a File Exchange utility ( <https://www.mathworks.com/matlabcentral/fileexchange/3683-breakxaxis link> ), not a bui...

9年弱 前 | 2

回答済み
Fit buttons to full screen
In App Designer, set the buttons' Units property to 'Normalized' instead of 'Pixels' (or whatever other value they currently hav...

9年弱 前 | 1

| 採用済み

回答済み
programatically dock and undock the editor
You can programmatically dock/undock editor files as follows: com.mathworks.mde.desk.MLDesktop.getInstance.setClientDocked(...

9年弱 前 | 1

回答済み
How can I access the Axle property in an axis ruler?
The Axle properties only become accessible once the graphics are fully rendered. This is why it works in your command window (wh...

9年弱 前 | 2

回答済み
Matlab 2016b - Maximizing affects pause
Use the *_drawnow_* function instead of *_pause_* - *_drawnow_* returns only after the entire GUI is processed and displayed (wh...

9年弱 前 | 0

送信済み


compare .fig files, or folders containing .fig files
compareFigFiles compares GUI (*.FIG) files, reporting differences in components/properties

約9年 前 | ダウンロード 613 件 |

3.0 / 5
Thumbnail

回答済み
Trader Toolbox realtime function is apparently undefined even when I have the file path identified.
The realtime() function of Trading Toolbox for IB TWS was only introduced in R2015a. If you upgrade your Matlab license you shou...

約9年 前 | 2

| 採用済み

回答済み
Is it possible to improve fread/fwrite performance and further speed up loading/writing of binary data?
You might try some of the suggestions mentioned here: * http://undocumentedmatlab.com/blog/improving-fwrite-performance * ht...

約9年 前 | 0

回答済み
How can I get text in figures to display symbols?
Perhaps this will help you: <http://undocumentedmatlab.com/blog/customizing-matlab-labels> %show the 'for all' and 'beta' s...

約9年 前 | 1

回答済み
Is there an hidden status for popup menus?
This functionality is part of the underlying Java object that is used by the Matlab GUI. You can customize it at the Java level ...

9年以上 前 | 3

| 採用済み

回答済み
How to raise simulation speed with plotting in Simulink
Perhaps you will find some of the ideas here useful: <http://undocumentedmatlab.com/blog/improving-simulink-performance> Yair...

9年以上 前 | 1

回答済み
Increasing HG2 framerate when updating large meshes: mission impossible?
There is indeed a performance penalty for HG2 compared to HG1. One thing that could alleviate the pain is to use the new 'limitr...

9年以上 前 | 0

回答済み
calling Java methods using JNI/C++ (via Swig) from Matlab -> UnsatisfiesLinkError
I have seen a report that adding dynamic libraries cannot be done directly from Matlab because of an issue with Matlab's classlo...

9年以上 前 | 1

回答済み
How can I speed up simulation of my Simulink model?
Try the list of suggestions here: # <https://www.mathworks.com/company/newsletters/articles/improving-simulation-performance-...

9年以上 前 | 0

回答済み
Speed-Accuracy Tradeoff calculations in MATLAB
The first (and probably best) place to search for Matlab code is the File Exchange on MatlabCentral: <https://www.mathworks.com/...

9年以上 前 | 0

送信済み


enable/disable entire figure window
enable/disable entire figure window, including toolbar, menubar, frame and all contents

10年弱 前 | ダウンロード 5143 件 |

4.8 / 5

回答済み
How to improve the performance of the software based opengl implementation in the newer releases of Matlab?
Using hardware acceleration is obviously better than using the software emulation. You might discover, as I have on my laptop, t...

10年弱 前 | 1

さらに読み込む