
Mike Croucher
Statistics
RANK
682
of 260,035
REPUTATION
88
CONTRIBUTIONS
0 Questions
19 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
20
RANK
of 17,884
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
1 Highlight
AVERAGE NO. OF LIKES
23
Content Feed
using matlab compiler to read a .mat file at run time
You can tell the compiler to exclude things using an Exclude pragma A demo: I created a .mat file as follows myvar = 1; save(...
1 month ago | 1
| accepted
Is MATLAB supported on Apple Silicon Macs?
Blog post on this topic at Exploring the MATLAB beta for Native Apple Silicon » The MATLAB Blog - MATLAB & Simulink (mathworks.c...
2 months ago | 1
Anderson Darling Goodness-of-the-fit test?
The statistics toolbox has an adtest function. It can test against a specific distribution with known parameters, or a more gene...
3 months ago | 1
| accepted
Using Parfor for solving ODE via numerical methods (Euler)
As others have said, you cannot parallelise this loop. However, what you can do is parallelise independent runs of this loop. ...
4 months ago | 1
OCR on a screenshot
Hi Paolo Just because I am MathWorks staff doesn't mean anything here because until right now I've never used MATLAB's ocr func...
4 months ago | 2
| accepted
i dont get why it says Unrecognized function or variable 'Nbin when i run it
It's because you have this line [count,center]=hist(x,Nbin); Nbin needs to be defined as the number of bins you want in the hi...
5 months ago | 0
I would like to plot two bar charts side by side using separate y-axis for each corresponding plot.
Try tilledlayout. Documented at Create tiled chart layout - MATLAB tiledlayout (mathworks.com) % I want one row of plots with...
5 months ago | 0
| accepted
Solved
Convert from Fahrenheit to Celsius
Given an input vector |F| containing temperature values in Fahrenheit, return an output vector |C| that contains the values in C...
6 months ago
Highlighted
Help us help you: Post your code
Every day, thousands of people ask questions on <https://mathworks.com/matlabcentral/answers/index MATLAB Answers> and many of t...
6 months ago | 23
arrayfun doesn't work with rmoutliers
arrayfun operates on every element of the array. So arrayfun(@rmoutliers,A,"UniformOutput",false) is like doing rmoutliers(0...
6 months ago | 0
variables cannot be saved in matlab
This looks like an operating system error. In particular, you are trying to write to a folder where you don't have write permis...
6 months ago | 0
| accepted
Values are getting updated every 15 seconds in thingspeak. How do I lower this time?
I guess you are using the free tier of thingspeak which is limited to one update every 15 seconds. For faster updates, you'll n...
7 months ago | 2
| accepted
Double Integration error using /
You need to vectorise your equation alpha = 1.0; inte = @(y,x) (cos(x).^2)./(1 + alpha./(cos(x).*sqrt(1 - 1./y.^2))).^2.*(1./...
7 months ago | 1
fsolve gives the same value for different parameters of the nonlinear equation
It seems that chaging the paramet C_TIC from 0 to 2.78 doesn't affect the outpur much. I changed your function slightly so that...
7 months ago | 0
Converting MATLAB code into python code
Hi Aakash To get this running on a HPC system, it would be beneficial to know the details of the HPC system. As I said in my co...
7 months ago | 10
| accepted
What is the difference between lu() and decomposition([],'lu')?
The two output form of lu() does use a different algorithm compared to the decomposition object. Also, it is not possible to sa...
8 months ago | 0
| accepted
Zero elements in a matrix more higher than ones (MATLAB)
This is almost certainly not the most efficient way of doing it but it seems to work. Will need the statistics and ML toolbox f...
8 months ago | 0
| accepted
Solved
Calculate Amount of Cake Frosting
Given two input variables |r| and |h|, which stand for the radius and height of a cake, calculate the surface area of the cake y...
9 months ago
Solved
Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...
9 months ago
Different results compared to hand calculation?
I don't know the algorithm you are implementing but I can see some things in your code that look strange to me and can explain w...
9 months ago | 0
| accepted
R = rotx(ang), roty(ang), rotz(ang) is not working in my MATLAB.
As Scott mentioned, these are in Phase Array Toolbox. Since you have access to it on MATLAB Online, it must be included in your...
1 year ago | 0
| accepted
Is there any implementation for Mask R-CNN in Matlab?
There's an example on the MathWorks GitHub site matlab-deep-learning/mask-rcnn: Mask-RCNN training and prediction in MATLAB for ...
1 year ago | 1
is matlab production server included in education license
Update from the year 2021: MATLAB Prodction Server is now included in Campus-Wide Licenses (used to be called TAH license).
1 year ago | 0