Veröffentlicht


Celebrating springtime: The MATLAB Daffodil
Although not the earliest to appear here in the UK, Daffodils are the flowers that, for me at least, scream "Spring has...

mehr als ein Jahr vor

Thumbnail

Beantwortet
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 ...

mehr als ein Jahr vor | 5

| akzeptiert

Beantwortet
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...

mehr als ein Jahr vor | 2

Veröffentlicht


The new combinations function in MATLAB – for cartesian products and parameter sweeps
I've always been a release notes nerd as I think that you can learn a lot from the raft of enhancements that come with every...

mehr als ein Jahr vor

Thumbnail

Beantwortet
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...

mehr als ein Jahr vor | 3

Veröffentlicht


Try Dark Mode on Desktop MATLAB with the ‘New Desktop for MATLAB’ beta
For longer than any of us at MathWorks are comfortable with, the following story has played out every time we release a...

mehr als ein Jahr vor

Thumbnail

Veröffentlicht


Function handles are faster in MATLAB R2023a
Roughly speaking, there are two ways we at MathWorks can speed up MATLAB. We can dive into individual functions to remove...

mehr als ein Jahr vor

Thumbnail

Beantwortet
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...

mehr als ein Jahr vor | 0

Beantwortet
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...

mehr als ein Jahr vor | 0

Beantwortet
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...

mehr als ein Jahr vor | 0

Beantwortet
Jupyterhub with Matlab integration
MathWorks have now released a MATLAB kernel for Jupyter. Details at Official MathWorks MATLAB kernel for Jupyter released » The...

mehr als ein Jahr vor | 2

Veröffentlicht


Official MathWorks MATLAB kernel for Jupyter released
Update: Since this post was published, the MATLAB Kernel for Jupyter has also been made available on Windows. See......

mehr als ein Jahr vor

Thumbnail

Beantwortet
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 ...

mehr als ein Jahr vor | 0

Veröffentlicht


Which MATLAB Optimization functions can solve my problem?
The solvers function from Optimization toolbox is one of my favourite enhancements of R2022b because it helps improve my...

mehr als ein Jahr vor

Thumbnail

Veröffentlicht


Add two lines to your MATLAB code to make it work with big data
Today's guest blogger is Harald Brunnhofer, a Principal Training Engineer at MathWorks. On top of getting thousands of...

fast 2 Jahre vor

Thumbnail

Veröffentlicht


Playing with the R2022b MATLAB Apple Silicon beta for M1/M2 Mac
Update 22nd June 2023: An updated blog post about MATLAB on Apple Silicon can be found at...

fast 2 Jahre vor

Thumbnail

Beantwortet
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 ...

fast 2 Jahre vor | 4

Veröffentlicht


MATLAB’s High Performance Computing (HPC) and ‘Big Data’ datatypes
Table of ContentsgpuArrays - GPU programming made easy dlarray - Specialised objects for Deep Learning training Tall...

fast 2 Jahre vor

Thumbnail

Beantwortet
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...

fast 2 Jahre vor | 1

Beantwortet
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)

fast 2 Jahre vor | 0

Beantwortet
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...

fast 2 Jahre vor | 1

| akzeptiert

Beantwortet
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 ...

fast 2 Jahre vor | 1

Beantwortet
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 ...

fast 2 Jahre vor | 2

Veröffentlicht


sinpi, cospi, implicit expansion and The 2022 MATLAB Mini-Hack
The 2022 MATLAB Mini-Hack is currently underway where MATLAB users submit 280 characters of code in order to produce a cool...

fast 2 Jahre vor

Thumbnail

Veröffentlicht


How Well Can I Draw a Circle? A MATLAB Adventure
Today's guest blogger is Rob Holt, who works at MathWorks in Natick, Massachusetts. Rob currently serves as the Manager for...

fast 2 Jahre vor

Thumbnail

Gelöst


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

etwa 2 Jahre vor

Beantwortet
Is there any concept like dictionary or hash tables in matlab like in Python?
As of R2022b, MATLAB has a new dictionary datatype An introduction to dictionaries (associative arrays) in MATLAB » The MATLAB B...

etwa 2 Jahre vor | 9

| akzeptiert

Beantwortet
How to make dictionary in Matlab
In R2022b and later, you can use the new dictionary type for this. Faster than containers.map. A tutorial-like introduction at...

etwa 2 Jahre vor | 0

| akzeptiert

Beantwortet
Dictionaries of Hashtables in MATLAB?
Reviving this thread in 2022 because R2022b contains a new dictionary data type. A tutorial-like introduction at An introductio...

etwa 2 Jahre vor | 1

Beantwortet
Faster alternative to containers.Map
MATLAB R2022b has a new dictionary datatype that's much faster than containers.map. A tutorial-like introduction at An introduc...

etwa 2 Jahre vor | 0

Mehr laden