
Yair Altman
Consultant
Website: http://UndocumentedMatlab.com
LinkedIn: http://www.linkedin.com/in/yairaltman
Author of "Accelerating MATLAB Performance" book:
http://UndocumentedMatlab.com/books/matlab-performance
Author of "Undocumented Secrets of MATLAB-Java Programming" book:
http://UndocumentedMatlab.com/books/matlab-java
MSc Computer Science, BSc Physics (both with top honors)
Professional programmer and manager since 1991
Contact me: altmany at gmail.com
Statistics
2 質問
247 回答
63 ファイル
ランク
135
of 257,982
評価
764
貢献
2 質問
247 回答
回答採用率
100.0%
獲得投票数
262
ランク
of 110,203
貢献
0 問題
0 解答
スコア
0
バッジ数
0
貢献
0 投稿
貢献
0 パブリック チャネル
平均評価
貢献
0 Highlights
AVERAGE NO. OF LIKES
Content Feed
Matlab class property specification
Starting in 16a, you can use the new syntax as long as you don't specify the dimensions. In other words, the following 2 propery...
2ヶ月 前 | 2
| 採用済み
Any simple ideas to improve performance of reading long (10 GB scale) .csv file?
If you need to read the entire file for some reason, then try to use parallelization with multiple workers. Each worker would re...
4ヶ月 前 | 0
Operand stack and Execution stack Error using append_pdfs
append_pdfs only accepts PDF input files, not PNG files or any other non-PDF files
4ヶ月 前 | 0
How to add multiple styles to my uiTree?
This looks like an internal Matlab bug. Specifically, after deleting nodes, the uitree's internal StyleConfigurationStorage prop...
4ヶ月 前 | 0
| 採用済み
how to find brushed data
In the new graphics system (R2014b onward), the brushed data info can be extracted from the hidden/undocumented BrushHandles pro...
7ヶ月 前 | 1
| 採用済み
Exporting images (png) through export_fig - painfully slow
Try to either reduce the resolution (the -r450 part), or to save as a vector-graphics image (PDF/EPS) rather than a PNG bitmap.
8ヶ月 前 | 0
How to save very large image to original resolution
Try to use export_fig's sister image-export utility, ScreenCapture: https://www.mathworks.com/matlabcentral/fileexchange/24323-s...
9ヶ月 前 | 0
Can I somehow improve performance of str2double?
I use the following function to convert a cell-array of strings to a cell-array of numeric values (where applicable) - it is ~2-...
1年以上 前 | 3
Speed issues with Matlab code compiled using SDK compiler for Python
Perhaps your deployed environment is different from your Matlab &D one. For example, perhaps you can access a GPU on the R&D env...
1年以上 前 | 0
How To Clear Java Heap Space Memory????
Clearing Matlab's Java heap space has been long awaited, but I'm afraid that the suggested submission (Davide Tabarelli's JavaHe...
1年以上 前 | 2
Import data tool speed
The import tool GUI only shows you a preview of the data, based on the top N lines in the file, it does not read and process the...
1年以上 前 | 0
| 採用済み
MATLAB Profiler - Granularity of Information
Use the [undocumented] -detail builtin profiler option, as in: profile on -detail builtin This works on old Matlab releases as ...
1年以上 前 | 1
| 採用済み
How can I make the plot transparent in a gscattter?
Nice answer Adam, but not exactly accurate if you are willing to use some undocumented features... The underlying objects in a...
1年以上 前 | 3
MATLAB export_fig crops title
This is fixed in the latest version of export_fig (3.09). In the future, report such issues in export_fig's issues page: https:/...
2年弱 前 | 0
| 採用済み
How to speed up a code from the Code Profiler Results ?
Try to set the "Vectorized" property using the odeset function, before running ode45. Also, specifying the Jacobian in advance (...
2年弱 前 | 0
| 採用済み
[Soft question] Tips and tools to analyze unfamiliar OO code
For inspecting a single object or class, try the GUI-based uiinspect utility (https://www.mathworks.com/matlabcentral/fileexch...
2年弱 前 | 0
Heatmap Axis Labels Printing Vertically?
The heatmap's X labels orientation is dynamically determined based on the number of labels and the axes width. In other words, i...
2年弱 前 | 1
graphics performance 2019a vs 2016b
R2019a uses the integrated axes toolbar, which constantly monitors mouse movements in order to generate data tips on-the-fly. If...
約2年 前 | 0
| 採用済み
Poor performance of mex file
You m-function uses parallelization (parfor), while your mex file does not. This in itself could cause your m-code to run much f...
約2年 前 | 0
Increase CPU Speed - MAC
You can separate the problem into separate tasks and launch separate Matlab processes to process them in parallel. This is essen...
約2年 前 | 0
How can I clear stuck help popups?
Updates June 12, 2020: There is a recognized bug report on a very similar issue: https://www.mathworks.com/support/bugreports/1...
約2年 前 | 6
| 採用済み
dynamic java path vs static java path
Some Java functionality, especially those that are concerned with Java events that need to propagate to Matlab callbacks, does n...
約2年 前 | 0
Matlab in AVX2 mode (for AMD CPU's)
This is apparently fixed on R2020a as reported by @NedFlanders (original credit is apparently due to @MichelKatz): https://www...
約2年 前 | 0
| 採用済み
How to change Heatmap's Grid (Edge) appereance and behavior?
There are several alternatives: Update the grid style to a non-solid line, for example: hHeatmap = struct(h_map).Heatmap; hHe...
約2年 前 | 4
| 採用済み
Unable to use Java class in a package - Undefined function or variable 'CartesianCoordinate'.
This problem could be due to numerous possible causes, and unfortunately Matlab is not very helpful in explaining the root cause...
約2年 前 | 0
How to load multiple excel files with multiple excel sheets and store it in matlab faster?
Try to use the 'basic' mode of xlsread, which reads the XLS file directly instead of using the much slower Excel instance: for ...
2年以上 前 | 0
Interactive broker timeseries vs history?
Both of these functions in the Trading Toolbox call IB's reqHistoricalDataEx function internally, but for some reason Mathworks ...
2年以上 前 | 0
Legend looks very weird
Run the following and check if you still see the same problem: plot(1:3,1:3,'ko-', 1:3,2:4,'ro-', 1:3,3:5,'bo-'); legend('Cere...
2年以上 前 | 0
Scrollable text box for GUI with selectable/editable text
Your script generates a GUI that looks perfectly ok to me (fully scrollable & selectable) on my Win10, in both 18b and 20a. Yo...
2年以上 前 | 2
| 採用済み
How can I suppress warnings about javacomponent being deprecated?
Wrap your javacomponent code as follows: oldWarningState = warning('off', 'MATLAB:ui:javacomponent:FunctionToBeRemoved'); [hjc...
2年以上 前 | 0
| 採用済み