Réponse apportée
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 ...

presque 4 ans il y a | 1

| A accepté

Réponse apportée
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...

presque 4 ans il y a | 4

Réponse apportée
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:/...

environ 4 ans il y a | 0

| A accepté

Réponse apportée
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 (...

environ 4 ans il y a | 0

| A accepté

Réponse apportée
[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...

environ 4 ans il y a | 0

Réponse apportée
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...

environ 4 ans il y a | 2

Réponse apportée
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...

environ 4 ans il y a | 0

| A accepté

Réponse apportée
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...

plus de 4 ans il y a | 0

Réponse apportée
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...

plus de 4 ans il y a | 0

Réponse apportée
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...

plus de 4 ans il y a | 7

| A accepté

Réponse apportée
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...

plus de 4 ans il y a | 1

Réponse apportée
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...

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
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...

plus de 4 ans il y a | 5

| A accepté

Réponse apportée
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...

plus de 4 ans il y a | 0

Réponse apportée
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 ...

plus de 4 ans il y a | 0

Réponse apportée
Interactive broker timeseries vs history?
Both of these functions in the Trading Toolbox call IB's reqHistoricalDataEx function internally, but for some reason Mathworks ...

plus de 4 ans il y a | 0

Réponse apportée
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...

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
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...

plus de 4 ans il y a | 2

| A accepté

Réponse apportée
How can I suppress warnings about javacomponent being deprecated?
Wrap your javacomponent code as follows: oldWarningState = warning('off', 'MATLAB:ui:javacomponent:FunctionToBeRemoved'); [hjc...

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
Plotting performance reduced in APP
App Designer creates an HTML/JavaScript-based webpages (uifigures), which are noticably slower than the Java-based figures that ...

plus de 4 ans il y a | 1

| A accepté

Réponse apportée
Datafeed Toolbox IQFeed Level 1 Data Fields Description
Cross-reference: https://www.mathworks.com/matlabcentral/answers/330794-field-list-of-iqfeed-realtime-data In the Trading Toolb...

plus de 4 ans il y a | 0

Réponse apportée
With eSignal/InteractiveData being discontinued in the DataFeed Toolbox, are there any other "mid-range" cost options for financial vendors?
A possible mid-range / low-cost financial datafeed is https://eodhistoricaldata.com, which has a Matlab connector called EODML.

plus de 4 ans il y a | 0

Réponse apportée
Creating a time series object from IQFeed data.
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
IQFeed: plot return from array of cells?
I believe that the DataFeed toolbox functions only store data in base workspace variables, from which you need to fetch them aft...

plus de 4 ans il y a | 0

Réponse apportée
Is there a way to get the timestamp including milliseconds when using the timeseries function of the datafeed toolbox?
IQFeed only returns the millisecs if you set the connection's IQFeed API protocol to 5.0 (see the IQFeed changelog). In certain ...

plus de 4 ans il y a | 0

Réponse apportée
Can't build Tick data from iQfeed for e-mini S&P Futures(symbol: ES)
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
How to effectively utilize listener and callback functions with iqfeed function realtime.
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
How do I get tick-by-tick historical 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
how to get multiple stocks datafeed for IQFeed?
I believe that the Datafeed Toolbox only allows specifying one symbol at a time. See here for example. As an alternative, consi...

plus de 4 ans il y a | 0

Réponse apportée
Does the Matlab iqfeed link timeseries function provide bid ask data
I believe that IQFeed provides bid/ask data only for historic ticks (HTT,HTX,HTD) queries, but not interval queries (e.g. HIT). ...

plus de 4 ans il y a | 0

Charger plus