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

mehr als 5 Jahre vor | 0

| akzeptiert

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

mehr als 5 Jahre vor | 0

| akzeptiert

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

mehr als 5 Jahre vor | 0

| akzeptiert

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

mehr als 5 Jahre vor | 1

| akzeptiert

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

mehr als 5 Jahre vor | 1

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

mehr als 5 Jahre vor | 0

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

mehr als 5 Jahre vor | 0

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

mehr als 5 Jahre vor | 0

| akzeptiert

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

mehr als 5 Jahre vor | 0

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

mehr als 5 Jahre vor | 0

| akzeptiert

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

mehr als 5 Jahre vor | 0

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

mehr als 5 Jahre vor | 1

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

mehr als 5 Jahre vor | 0

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

mehr als 5 Jahre vor | 0

| akzeptiert

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

mehr als 5 Jahre vor | 1

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

mehr als 5 Jahre vor | 2

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

mehr als 5 Jahre vor | 0

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

mehr als 5 Jahre vor | 0

| akzeptiert

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

mehr als 5 Jahre vor | 0

| akzeptiert

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

mehr als 5 Jahre vor | 0

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

mehr als 5 Jahre vor | 0

| akzeptiert

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

mehr als 5 Jahre vor | 0

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

mehr als 5 Jahre vor | 0

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

mehr als 5 Jahre vor | 0

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

mehr als 5 Jahre vor | 0

| akzeptiert

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

mehr als 5 Jahre vor | 0

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

mehr als 5 Jahre vor | 0

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

mehr als 5 Jahre vor | 0

| akzeptiert

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

mehr als 5 Jahre vor | 0

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

mehr als 5 Jahre vor | 0

Mehr laden