Community Profile

photo

Mike Croucher

Last seen: Today Actif depuis 2021

Followers: 5   Following: 0

Statistiques

All
  • Knowledgeable Level 4
  • MATLAB Flipbook Mini Hack Participant
  • Explorer
  • First Review
  • MATLAB Mini Hack 2022 Participant
  • 3 Month Streak
  • MATLAB Mini Hack Participant
  • Solver
  • Revival Level 1
  • First Answer

Afficher les badges

Feeds

Afficher par

A répondu
Matlab ODE function solving using Python Scipy library.
@Simon Mwakitabu If you are still interested in this, you can now call the SUNDIALS solver direct from MATLAB. Details at Faster...

8 jours il y a | 0

A répondu
Using Sundials cvode solver
As of MATLAB R2024a, SUNDIALS is shipped with and supported directly in MATLAB. See my blog post for details Faster Ordinary D...

9 jours il y a | 0

A répondu
SUNDIALS installation in MATLAB
As of R2024a, There is now SUNDIALS support in MATLAB via the ode interface. This incluldes "idas" Details on The MATLAB Blog: ...

9 jours il y a | 0

A répondu
Will MATLAB Live editor ever support spellcheck?
I'm happy to tell you all that spellcheck is now supported as of R2024a. I discuss it in the MATLAB Blog here Two of my ‘White W...

16 jours il y a | 0

A répondu
Support packages in Matlab online (Hyperspectral Imaging Library)
The link that you pointed to, Install Support Packages for MATLAB in MATLAB Online Server - MATLAB & Simulink - MathWorks United...

environ 2 mois il y a | 0

| A accepté

A répondu
Can i call matlab from fortran?
There is a section in the documentation that covers this. You can get started at Call MATLAB from Fortran - MATLAB & Simulink -...

environ 2 mois il y a | 0

A répondu
Graycomatrix and nlfilter not Supported for Code Generation
To work out if code generation is supported or not for any given function, go to its documentation page and scroll to the bottom...

environ 2 mois il y a | 0

A répondu
Do I need to move my files and update my path to use git in Matlab?
Hi Doug The way to think about it is that source control begins in a root directory and everything else related to that project...

environ 2 mois il y a | 0

| A accepté

A répondu
Error using pyversion, Too many input arguments.
Hi Mukesh The pyversion command is no longer recommended. See the doc at (Not recommended) Change default version of Python int...

environ 2 mois il y a | 0

A répondu
dlarray abstract syntax tree
Hi Michael Good question! I didn't know either so I asked around internally and the answer is 'Currently not'. I'd like to add ...

3 mois il y a | 1

A répondu
[Matlab in python] Does matlab engine supports a .m file whose input is a function handle?
Unfortunately, the MATLAB Engine for python does not support passing Python functions to MATLAB. Running the following in Python...

3 mois il y a | 0

A répondu
In the example, 25 images are generated. How do I generate one image
The imtile command should be removed when you only have one image: Go down to the Generate New Images section and change numObs...

3 mois il y a | 2

| A accepté

A répondu
python call MATLAB function Use Named Arguments
Try this yw = eng.wdenoise(signal, matlab.double(4), "Wavelet","sym2" )

3 mois il y a | 1

| A accepté

A répondu
How can I use source control programmatically?
Which version of MATLAB are you using? This functionality got added in R2023b. For example, you mentioned you wanted to check t...

7 mois il y a | 0

A répondu
Plotting first-order differential equation with initial condition
In R2023b, a completely new interface for working with ODEs was released. The old ways are all still in MATLAB, of course, but ...

7 mois il y a | 2

A répondu
Fortran compiler for M2 (Silicon) Apple processor
The supported Fortran Compiler for Apple Silicon in R2023b is the NAG Fortran Compiler. gfortran is not supported I'm afraid. T...

7 mois il y a | 0

A répondu
Speeding up matrix exponentials
Don't let the fact that I'm MathWorks staff fool you here -- I am playing outside of my comfort zone and this suggestion may be ...

environ un an il y a | 5

| A accepté

A répondu
How to get the combinations of elements of two arrays?
As of MATLAB R2023a, the new combinations function can do this for you. Details at The new combinations function in MATLAB – fo...

environ un an il y a | 2

A répondu
Mathworks: it's time for a dark theme.
Dark Theme in MATLAB is here! It's in beta, but its here! Details: Try Dark Mode on Desktop MATLAB with the ‘New Desktop for M...

environ un an il y a | 3

A répondu
Help with ODE tolerance options
Thanks so much for including all of your code and data. It allowed me to run everything on my machine and use the profiler to f...

environ un an il y a | 0

A répondu
Matlab equivalent to iPython Notebook
An update on this question: MathWorks have now released an official MATLAB kernel for Jupyter. Details at Official MathWorks MAT...

environ un an il y a | 0

A répondu
How to install Matlab Jupyter engine on macOS
MathWorks have now released a MATLAB Kernel for Jupyter. You should find this easier to use! Official MathWorks MATLAB kernel fo...

environ un an il y a | 0

A répondu
Jupyterhub with Matlab integration
MathWorks have now released a MATLAB kernel for Jupyter. Details at Official MathWorks MATLAB kernel for Jupyter released » The...

environ un an il y a | 2

A répondu
How to hide code in live script files for others to not see?
How you proceed depends on what you mean by 'hide'. You can make the code disappear by clicking on the third icon on the right ...

plus d'un an il y a | 0

A répondu
Efficient way of Vectorization
Switch the order of the loops around. It will be faster because you'll be operating on the matrix column-wise test function ...

plus d'un an il y a | 4

A répondu
Macbook arm M1/M2 chip support
Yes. It is in development now. There was a beta released a few months ago that is no longer available Exploring the MATLAB beta...

plus d'un an il y a | 1

A répondu
How can i plot this function? y=0.75/(log10(x)*2).^2
How about this? x = linspace(0.01,0.99,100); % Avoid tricky inputs like 1 y = 0.75./(log10(x)*2).^2; plot(x,y)

plus d'un an il y a | 0

A répondu
Why aren't the first and last peaks detected using findpeaks()?
For vec1, the reason is that the peak is also the last data point and so is intentionally exlcuded. The findpeaks documentation...

plus d'un an il y a | 1

| A accepté

A répondu
sin(2*pi) vs sind(360)
If you ever need to compute sin(x*pi) or cos(x*pi), its better to do sinpi(x) or cospi(x). You never explicitly multily x by a ...

plus d'un an il y a | 1

A répondu
Why in matlab sin(pi) is not zero but sin(pi/2) is 1?
If you ever need to compute sin(x*pi) or cos(x*pi), its better to do sinpi(x) or cospi(x). You never explicitly multily x by a ...

plus d'un an il y a | 2

Charger plus