Réponse apportée
How to plot data from iqfeed
Consider using my IQML (IQFeed-Matlab) connector for this. IQML enables both synchronous (blocking) and asynchronous (background...

plus de 4 ans il y a | 0

Réponse apportée
IQFeed market depth and time series not working
!NO_DATA! is an IQFeed message that means there is no market-depth data for this symbol. It is my understanding that Market Dept...

plus de 4 ans il y a | 0

Réponse apportée
Listener for receiving real time data through DataFeed Toolbox
Consider using my IQML (IQFeed-Matlab) connector as an alternative. IQML enables both synchronous (blocking) and asynchronous (b...

plus de 4 ans il y a | 0

Réponse apportée
Field List of IQFeed Realtime Data
Cross-reference: https://www.mathworks.com/matlabcentral/answers/459284-datafeed-toolbox-iqfeed-level-1-data-fields-description ...

plus de 4 ans il y a | 0

Réponse apportée
IQFEED and Matlab too slow
For anyone interested, the IQML (IQFeed-Matlab) connector was specifically designed for top performance, including parallel and ...

plus de 4 ans il y a | 0

Réponse apportée
Datafeed toolbox & IqFeed -- any known solution to IAsyncResult error?
Perhaps your IQFeed subscription does not enable fetching historic tick/interval data for XIV. Adding the necessary subscription...

plus de 4 ans il y a | 0

Réponse apportée
Are synchronous IQFEED data queries possible in Datafeed Toolbox 4.5 (R2013a)?
For anyone interested, the IQML (IQFeed-Matlab) connector enables both synchronous (blocking) and asynchronous (background) quer...

plus de 4 ans il y a | 0

Réponse apportée
Can I use the function HISTORY with multiple security inputs for IQFEED data in MATLAB (R2013a)?
For anyone interested, the IQML (IQFeed-Matlab) connector enables querying multiple securities at once, specified as either a ce...

plus de 4 ans il y a | 0

Réponse apportée
3D point clouds with variable marker transparency, color and size
As an alternative to scatter3, you could keep using plot3 and attach a callback function to the axes that gets invoked whenever ...

plus de 4 ans il y a | 2

Réponse apportée
Does 2019b (windows) contains java?
The Java runtime is located in C:\Program Files\Matlab\R2019b\sys\java\jre\win64\jre\bin\

plus de 4 ans il y a | 0

Réponse apportée
Figure uitable does not display html image in 2019b
It's not just in tables. For some reason <img> tags are now ignored in all uicontrols (inc. buttons, listboxes etc.). There is n...

plus de 4 ans il y a | 3

Réponse apportée
How to keep axes on top of uipanels?
You can also use a semi-tranparent patch. Patches are children of axes, so they move around with the axes if you zoom or pan, an...

plus de 4 ans il y a | 1

Réponse apportée
How to keep axes on top of uipanels?
You had a few errors in your code: first, you made Panel3 transparent instead of Panel2. Secondly, you need to create Panel2 ins...

plus de 4 ans il y a | 0

Réponse apportée
How can I put a javacomponent in the app designer?
Java components are not supported by AppDesigner or uifigures. This is not a temporary limitation - it is a fundamental outcome ...

presque 5 ans il y a | 4

| A accepté

Réponse apportée
deprecated javacomponent and javaframe
I am very sorry to say that I am not aware of any easy way to make the transition from a Java-rich GUI to uifigures. All the mai...

presque 5 ans il y a | 9

Réponse apportée
com.mathworks.*....
These Java classes are internal to Matlab, are unsupported and undocumented. To the best of my knowledge, the only location that...

presque 5 ans il y a | 1

| A accepté

Réponse apportée
How do I speed up plotting of interactable scatter points?
Indeed - you get a single line object with multiple data points, this is the main reason for the speedup. In your callback you c...

presque 5 ans il y a | 0

Réponse apportée
How do I speed up plotting of interactable scatter points?
Try to use the vectorized version of plot to plot all the data points in a single function call rather than a loop, and also try...

presque 5 ans il y a | 0

Réponse apportée
How can convert a .gdb (binary file) file to a .mat file ?
I am not familiar with a direct GDB-to-Matlab function. The easiest solution may be to store the data in CSV file rather than G...

presque 5 ans il y a | 0

Réponse apportée
How to speed up function approximation?
It may be useful to replace the string with a function handle. Also, setting the convergence tolerances to smaller values than...

presque 5 ans il y a | 0

Réponse apportée
Converting .fig file into 2D .dxf file
I think it may be simplest to save the figure as PDF and then use one of the multiple available converters from PDF to DXF.

presque 5 ans il y a | 1

| A accepté

Réponse apportée
Subscript in stackedplot DisplayLabels
You can access the individual stacked-axes' properties via the hidden sub-property Axes of the stackedplot's AxesProperties prop...

presque 5 ans il y a | 4

| A accepté

Réponse apportée
Improving Presentation of a Graph
Regarding output quality, esp. for EPS that you mentioned - many people found the export_fig utility useful for preparing public...

environ 5 ans il y a | 0

Réponse apportée
The following appears in the command window. What does it mean?java.lang.NullPointerException
This is an error that originates from Java code, typically concerning some GUI component that misbehavs or which does not handle...

environ 5 ans il y a | 0

Réponse apportée
Matlab uitable column font size using html not working
HTML is only supported out-of-the-box in the legacy (Java-based) figures, not the new web-based (AppDesigner) uifigures. You ma...

environ 5 ans il y a | 0

| A accepté

Réponse apportée
Why does "Auto Width" feature not adapt to table axes size in GUIDE?
The "AutoWidth" setting of the uitable only sets the individual column's width based on its contents. It does not control the en...

environ 5 ans il y a | 2

Réponse apportée
How to add a sortable property to uitable within a classic figure.
My Java-based uitable utility on the Matlab File Exchange provides a sortable wrapper for the legacy uitable. The sorting functi...

environ 5 ans il y a | 4

| A accepté

Réponse apportée
How to open SLDD parameter editor dialog programatically?
try using the openvar function

environ 5 ans il y a | 0

Réponse apportée
Why does fplot think my function is not vectorized
As far as I can tell (never mind exactly how), internally a check is made whether the output of fun(1:3) is exactly equaln to th...

environ 5 ans il y a | 1

Réponse apportée
uigetfile with default filter
Adam Danz had the right idea, but missed a few key things. The FilterIndex field should indeed have influenced the filter select...

plus de 5 ans il y a | 3

| A accepté

Charger plus