Réponse apportée
how to solve this coupled ODE problem using ode solvers ?
If you want to use the odeNN functions you need to rewrite your 2 2nd-order ODEs into 4 1st-order ODEs, something like this: fu...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
How can I remove the additive periodical noise from the image?
Your Filterimage is not the notch-filter you need, that is only the 1-D amplitude (possibly power) of the 1-D fft of the filter ...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
How to convert 'DDMMYYYYhhmm' into 'DD-MM-YYYY hh:mm'
You can do something like this to convert a date-string to another date-string: datestr(datenum(char(['190120211029';'140219671...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
How does the time step affect the results of ODE solvers?
The way you call ode15s you simply chop up the time-intervall into sub-intervalls and integrate sub-intervall by sub-intervall. ...

plus de 5 ans il y a | 1

| A accepté

Réponse apportée
running MATLAB ode45 back-to-back
Well if you have a problem like this (improvising for simplicity) ode1 = @(t,y,alpha) alpha*y; % exponential growth t_span1 = ...

plus de 5 ans il y a | 1

Réponse apportée
Why does not coefficients vector include zero?
When I change the polynomial to: cf = fliplr(coeffs(x*3 + 2*z, [x y z],'All')) I get a 3-D array for the coefficients, as expe...

plus de 5 ans il y a | 0

Réponse apportée
Using the cpsd function
Simply use the spectrogram function to calculate the spectrograms of your two time-series, something like this: [S1,F1,T1] = sp...

plus de 5 ans il y a | 0

Réponse apportée
3d Plot “pile up 100 2d images” in 3d plane
You can use the function slice (see the help and documentation for details), but to do that you'll have to use 3-D arrays as inp...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
Probability density function calculation from data
Step 1, combine the daily rain-data to a 20-by-365 matrix: for iY = 20:-1:1 rain_20years(iY,:) = rain_daily{iY}; % You'll ...

plus de 5 ans il y a | 0

Réponse apportée
data fitting by Integration with variable limit with a unknown parameter.
You can do something like this: y_fcn = @(CT,x) CT(1) * 74.826 * (x./CT(4)).^3 * integral(t.^4.*exp(t)./(exp(t)-1).^2), 0, CT(4...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
video camera data processing
Simplest way might be to use VideoReader: vidObj = VideoReader('Your-video.mp4'); Frame1 = read(vidObj,1); idx1toExtract = ...

plus de 5 ans il y a | 0

Réponse apportée
Solving a system of ODE with Crank Nicholson
Note that you have a set of coupled ODEs not PDEs. The Crank-Nicholson method is developed for solving PDEs where we have both "...

plus de 5 ans il y a | 1

Réponse apportée
How to create 3D array out of multiple 2D arrays of different dimensions?
Something like this ought to work: M2Dall = {m1,m2,m3,mN}; % Puting all matrices into one cell-array. for i3 = numel(M2Dall):-...

plus de 5 ans il y a | 0

Réponse apportée
Pr4oblem with an ODE 45 " not enough input arguments"
Your definition of the ODEs is unconventional. I've always used to define coupled ODEs such that the dependent variables are in ...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
How to plot contourf using following information?
You would have to make one contour-plot for each time-step: i_time = 1; contourf(lon,lat,pr(:,:,i_time)') If I understood the...

plus de 5 ans il y a | 1

Réponse apportée
how to create noisy image based on Poisson's noise
Well poissrnd is what you want, as far as I understand. If you have an "ideal image" with intensity I: I = repmat(1+[0:11].^2,[...

plus de 5 ans il y a | 2

Réponse apportée
How can I optimize function output by tuning 3 input parameters?
You'll have to modify (at least for simplicity) your function to something like this: function [Pressures] = myFunc(KpKdKi) ...

plus de 5 ans il y a | 0

Réponse apportée
Getting Meters per Pixel out of the camera calibration app?
If you know the size of the squares on the checkerboard and your objects are at the same distance then you only need to count th...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
How to specify points in on two curves in plot?
This seems like a task for interp1. Have a look at the help and documentation for that function. I'd do something like this: sc...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
How do I generate a spherical image from a 3D matlab figure
Currently matlab has 'orthographic' and 'perspective' for the 'projection'-property of 3-D axes. You can perhaps get a wee bit ...

plus de 5 ans il y a | 0

Réponse apportée
Nonscalar arrays of function handles are not allowed; use cell arrays instead.
You get the error in newton because the feval of your ydy-function returns function handles and you try to assign them to regula...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
How to use smoothing spline to fit a closed curve?
You'll get some progress moving to radial coordinates (it will not be the same properties of a spline in radial coordinates as i...

plus de 5 ans il y a | 0

Réponse apportée
how to delete elements in the matlab array by overcoming the Unable error to delete elements from this array because dimension 3 has fixed size.
In your function y will not be set. You only try to remove one element from the input, that's wasting time. When I run this at t...

plus de 5 ans il y a | 0

Réponse apportée
When I attempt to run this code, it doesnt stop running. It will only stop when I pause it. Would appreciate any help as to how to fix this?
If your odes should have positive solutions (haven't checked them to be able to judge this), and they happen to become negative ...

plus de 5 ans il y a | 0

Réponse apportée
earth magnetic field model
Check the help and documentation for whatever function you use to get the "world magnetic field". In the IGRF-implementation (an...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
Much slower valid convolution using complementary size of kernels.
No, n-dimensional fourier-transforms, multiplication of the Fourier-transforms of 5-5-8 a with T will be a fair bit faster than ...

plus de 5 ans il y a | 0

Réponse apportée
Curve Fitting for a function with 3 fitting parameters.
For this I typically use standard non-linear least-square-fitting. That only requires some optimisation-routine, like fminsearch...

plus de 5 ans il y a | 0

Réponse apportée
polyfit with multiple dependent variables
The polyfit function only works for 1-D polynomials, as far as I understand things. However there is an n-dimensional polynomial...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
MATLAB's crosscorr function and R Studio ccf show different results
If you cannot find the information in the documentation, you'll have to go to the source. This is what I find in the xcorr funct...

plus de 5 ans il y a | 0

Réponse apportée
3d plot help
Have a look at the FEX-submission joyplot, it should give you functions to make these types of plots. HTH

plus de 5 ans il y a | 0

Charger plus