답변 있음
Analysing Noisy Video for Approximating Radiation Dose on an Observation Baloon
The way I understand your problem is that you're looking for variation in cosmic ray-flux with altitude? Or are you looking at s...

5년 초과 전 | 0

| 수락됨

답변 있음
Monod equations with ODE45
From the looks of your 3 coupled ordinary differential equations it seems unlikely that they have solutions that are neat elemen...

5년 초과 전 | 0

답변 있음
How to reduce chromatic aberrations in color images?
1, Use matlab to design improved lenses that are achromatic. (This is by far the best way to go about it, nothing helps better a...

5년 초과 전 | 0

답변 있음
to find polar curve area
The area of a circle-sector is: Use that for each small sector of your areas, add them up, then change the number of elements...

5년 초과 전 | 0

답변 있음
How can I plot boundary with these green points instead of these zig zag lines?
Use the function: convhull to get indices to points along the perimeter in order. See the help and documentation for details. ...

5년 초과 전 | 1

| 수락됨

답변 있음
Interpolation of non monotonic data.
The interpolation-function does something else than what you seem to try. It takes one data-vector, D, taken at a discrete set o...

5년 초과 전 | 0

| 수락됨

답변 있음
Pseudo zernike moment for an image
The Zernike functions are defined on the unit-disk, i.e. circel with radius 1. Your image is likely square, so your choise is t...

5년 초과 전 | 0

답변 있음
How can I change Indexing of a Matrix?
This seems like a "very ambitious idea, with dubious benefits". But I'm not the one to judge, so I'll guess you have some good r...

5년 초과 전 | 0

답변 있음
Orthogonality of a 4x4 DCT matrix
What does it mean that a matrix is orthogonal? What is the condition for two vectors to be orthogonal? Answer these two questi...

5년 초과 전 | 0

답변 있음
How can i illustrate the fast fourier transform of an image ?
Typically you will have to take the log of the magnitude of the fft-coefficients to get a "nice-looking" illustration. That is d...

5년 초과 전 | 0

답변 있음
Lowess smoothing disappears in Curve Fitting App
I suggest you scrap the curve-fitting app, the way to go is to start from Loren's nice blogg-post on LOWESS-fitting. That way ev...

5년 초과 전 | 0

답변 있음
Random set of vectors and sort them via the x axis
Have a look at the help and documentation of the function sortrows. Also (if this is a educational programming task) read the he...

5년 초과 전 | 0

| 수락됨

답변 있음
How to control color and the intensity in a pcolor figure?
You could try something like this: lambda = 400:700; % Wavelengths in nm. I_of_lambda = % Solar-spectral intensity as a functi...

5년 초과 전 | 1

| 수락됨

답변 있음
Error using ode45
Perhaps your calling has become too "traditional" and is not properly supported. In that case (and in general) it might be enoug...

5년 초과 전 | 0

답변 있음
Adding Harmonics of a sine wave together
You have to take into account that the fft returns complex Fourier-coefficient - that is both real and imaginary components. So ...

5년 초과 전 | 0

답변 있음
How to plot scatter graph with colourmap functon
To make it short and simple couldn't you just use scatter and let it automatically scale the values? scatter(x,y,23,myVal,'fill...

5년 초과 전 | 0

답변 있음
Double integral with rectangle transformation
No. Check things like this by simply doing things like this: [x,y] = meshgrid(linspace(-2,2,401)); pcolor(x,y,abs(x)+abs(y)),s...

5년 초과 전 | 0

| 수락됨

답변 있음
ODE with time dependant variable
Go to the help and then online documentation for ODE45, there you will find illustrated examples for both multiple coupled ODEs ...

5년 초과 전 | 0

| 수락됨

답변 있음
Equal Axis reduce the plot size
That is a terrible problen, what happens in your case, with increasingly narrow axes is (likely) unavoidable when you get very d...

5년 초과 전 | 0

답변 있음
solving a coupled differential equations using ODE45
You have to put both ODEs together and integrate the pair at once. Let's look at an example equation: That pair of equations ...

5년 초과 전 | 3

| 수락됨

답변 있음
Let other applications use Matlab's version of the CUDA toolkit
0: I have no idea about legalities. 1, I found a lot with unix find: $ find ./ -iname \*cuda\*.so\* ./R2020a/bin/glnxa64/libo...

5년 초과 전 | 0

답변 있음
How to more efficiently populate a sparse matrix
The general advice is to calculate and save the non-zero elements, and their array-indices, in 3 arrays and then once they've be...

5년 초과 전 | 0

| 수락됨

답변 있음
vpaintegral() returns wrong answer for g(t) = (mod(t,5))^2
Peculiar. If you look at g(t) you will see (well in my version of matlab): g(t) = (mod(t,5))^2 g(t) = t^2 Which shows that t...

5년 초과 전 | 0

| 수락됨

답변 있음
Why is it that Matlab has so many data types?
Partial "answer": In the beginning there were the double (32-bit?) and the char, and everything was peaceful, then they ate of...

5년 초과 전 | 0

답변 있음
how to convert light spectral / intensity to RGB value?
Well I assume that you want to convert the envelope of the coloured region into a single RGB-tripplet. In your particular case I...

5년 초과 전 | 1

| 수락됨

답변 있음
Perform FFTW of a song
Instead of using the fft, that calculates one fourier-transform of the entire time-series, have a look at the spectrogram functi...

5년 초과 전 | 1

답변 있음
Break title into multiple lines? Part 2
This works: title1 = string('The first title-row'); title2 = string('Some Rosetta stonery'); title3 = string('Den sista titel...

5년 초과 전 | 0

| 수락됨

답변 있음
Multiplication of tranformation matrices gives strange result
You have confused permutation-matrices with mirroring and rotation-matrices. They are not the same. Your Rccw60 is not (what I t...

5년 초과 전 | 0

답변 있음
How Do I plot Lat Long Altitude into a 2D countour
The problem you have is that you have coordinates for contours one level at a time, however since you have multiple closed loops...

5년 초과 전 | 0

답변 있음
Minimize Difference in Partition Sums from Experimental Data
Yup, you will find the algorithm and information here: partition problem (wikipedia). HTH

5년 초과 전 | 0

더 보기