Statistics
RANK
183
of 293,982
REPUTATION
612
CONTRIBUTIONS
0 Questions
49 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
266
RANK
60 of 20,065
REPUTATION
13,698
AVERAGE RATING
4.30
CONTRIBUTIONS
22 Files
DOWNLOADS
95
ALL TIME DOWNLOADS
131200
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Why does the silicon version of MATLAB run slower on macOS?
A lot could have changed between 21b and 23b, so it's possible that the performance degradation comes from something else gettin...
8 months ago | 0
Adding vertical line to plot?
Woohoo - this is built into MATLAB now, as of R2018b! If you are running R2018b or later, you can use the “xline” and “yline” ...
1 year ago | 74
| accepted
Dependency management & package manager like pip in ML
We are working on a package management system for MATLAB. The mpm comand you found in MATLAB was from an early beta test we ran ...
1 year ago | 5
| accepted
MATLAB certification/verification/validation
I assume that what you are getting at is ultimately trying to assess quality. While standards have their place, it's not obvious...
2 years ago | 3
Issue in figure using M1 pro chip
I just got word from our Mac guru that her guess is that you are hitting the same issue as in this Answer: https://www.mathwork...
2 years ago | 0
Mathworks: it's time for a dark theme.
UPDATE March 17, 2023: Try dark mode by installing the beta of the New Desktop for MATLAB, available for R2023a. Just search for...
2 years ago | 70
| accepted
How to Decompose Time Series Data into Trend and Seasonality?
This just got way easier, with the new trenddecomp function introduced in R2021b.
3 years ago | 4
Yesterday I was participation a webinar Using MATLAB with Python but I could hear the sound. Is these webinar recorded on a video that I can see?
The recording is available here: https://www.mathworks.com/videos/using-matlab-with-python-1591216182793.html
4 years ago | 0
Read Excel file with Matlab
If the data in your spreadsheet is largely tabular, you'll likely be happier reading it into a table. tables allow you to mix nu...
4 years ago | 3
| accepted
How do I use suptitle in my subplot
This capability is now built into core MATLAB. sgtitle ("Add title to subplot grid") was introduced in 18b. We also introduced t...
4 years ago | 10
Does Notebook Suite still exist
The Notebook interface has been removed. The documentation mentions this change and points to the Live Editor as an alternative:...
6 years ago | 2
Missing Plot Tools button in Matlab 2018b
Plot tools are still there, though we are starting to favor workflows like using the new inspector (now the last button on the ...
6 years ago | 1
| accepted
How to deploy a MATLAB GUI in a web applicaiton
Likely too late for the op, but MATLAB now has the ability to deploy apps built with App Designer directly to web pages: <htt...
6 years ago | 1
Resize image before export to excel
The easiest way to adjust the size is to change the size of the figure before it is copied to the clipboard because hgexport hon...
6 years ago | 1
Documentation of Editor API
These functions are documented through their source code help, though there are no reference pages. Our intention is that the ed...
7 years ago | 1
| accepted
How do I pick the largest peaks in a region?
If you are up for replacing the peak finding, and have Signal Processing Toolbox, you could consider trying <https://www.mathwor...
7 years ago | 1
How do I add markers when using plotyy?
Easy Answer: If you are using R2016a or newer, use <https://www.mathworks.com/help/matlab/ref/yyaxis.html yyaxis> instead of plo...
7 years ago | 1
| accepted
License renewal problems Matlab
My recommendation would be to contact support. You can reach them here: <http://www.mathworks.com/support/contact_us/>
8 years ago | 0
Converting matlab code to python
I'm not sure about converting the code, but there are a few other ways you might be able to connect your MATLAB algorithms with ...
8 years ago | 1
plotting circles
It's counter-intuitive, but this is actually really easy with the rectangle function. From the <http://www.mathworks.com/help/ma...
8 years ago | 18
Large Integer problem
I'm 5 years late to the party, but another lightweight way to address this specific behavior is to force the variables to be int...
8 years ago | 0
Exclude unnecessary toolboxes in 2015
If I understand this correctly, there are really two different pieces of the standalone executable: * The MATLAB Runtime. Thi...
8 years ago | 2
How to develop a 3D Cartesian mesh generator on MATLAB ?
You can do this with the <http://www.mathworks.com/products/pde/ PDE Toolbox> using new features introduced in R2015a. More deta...
9 years ago | 0
Interface an arduino with MATLAB
It mentions on the bottom of that page that the hardware support package is only for R2014a and newer. It provides a separate li...
9 years ago | 0
How common is MATLAB in academia?
Very interesting question and discussion! As you all mentioned, MATLAB has long been a de facto language and platform for severa...
9 years ago | 2
| accepted
Skip certain times in datetime plot
If you want to plot all of the data, but to not connect the line between some values, you could inject a NaN in your data where ...
9 years ago | 1
How to get the matlab code for "viptraffic" demo which is available in matlab?
Avinash - This example is implemented as a Simulink model. There is no fundamental underlying MATLAB code to Simulink models. Th...
9 years ago | 0
| accepted
Matlab Screen Size incorrect
Did you by chance change the screen resolution after starting MATLAB. The ScreenSize property is fixed when MATLAB starts up. If...
9 years ago | 2
Is it "ok" to convert new graphics object handles to double handles?
You've got the right idea. This capability is provided to help make it easier to update code to work with the new graphics syste...
10 years ago | 0
| accepted
how to pass an argument to python?
If you have access to MATLAB R2014b, you could use the direct interface to Python. This interface supports passing data directly...
10 years ago | 0