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

alrededor de 5 años hace | 0

| aceptada

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

alrededor de 5 años hace | 0

| aceptada

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

alrededor de 5 años hace | 0

| aceptada

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

alrededor de 5 años hace | 1

| aceptada

Respondida
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 = ...

alrededor de 5 años hace | 1

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

alrededor de 5 años hace | 0

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

alrededor de 5 años hace | 0

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

alrededor de 5 años hace | 0

| aceptada

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

alrededor de 5 años hace | 0

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

alrededor de 5 años hace | 0

| aceptada

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

alrededor de 5 años hace | 0

Respondida
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 "...

alrededor de 5 años hace | 1

Respondida
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):-...

alrededor de 5 años hace | 0

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

alrededor de 5 años hace | 0

| aceptada

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

alrededor de 5 años hace | 1

Respondida
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,[...

alrededor de 5 años hace | 2

Respondida
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) ...

alrededor de 5 años hace | 0

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

alrededor de 5 años hace | 0

| aceptada

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

alrededor de 5 años hace | 0

| aceptada

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

alrededor de 5 años hace | 0

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

alrededor de 5 años hace | 0

| aceptada

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

alrededor de 5 años hace | 0

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

alrededor de 5 años hace | 0

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

alrededor de 5 años hace | 0

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

alrededor de 5 años hace | 0

| aceptada

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

alrededor de 5 años hace | 0

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

alrededor de 5 años hace | 0

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

alrededor de 5 años hace | 0

| aceptada

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

alrededor de 5 años hace | 0

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

alrededor de 5 años hace | 0

Cargar más