Réponse apportée
Unable to recreate k-means clustering example
It works correctly in R2024a. (The online documentation reflects the latest update to the current release, and may not run cor...

presque 2 ans il y a | 1

| A accepté

Réponse apportée
Determining optimal cut off frequency
‘I have been told to filter at a range of frequencies and then calculate the RMSD between the original and filtered data.’ I ...

presque 2 ans il y a | 0

Réponse apportée
Seasonal decomposition of a daily time series
Your data are not regularly-sampled, so it is necessary to use the funciton on them first. After that, calculate the Fourier t...

presque 2 ans il y a | 0

Réponse apportée
Index exceeds the number of array elements. Index must not exceed 101.
I am not certain how to get these into a form that the MATLAB ODE integrators could use, so I did the next best thing, and calcu...

presque 2 ans il y a | 1

Réponse apportée
integrate with the upper limit is a function
The Symbolic Math Toolbox appropriately considers an otherwise undefined function. Define it and you get an actual result — ...

presque 2 ans il y a | 0

Réponse apportée
want to plot a function
Subscript ‘H’ in the loop, then create ‘f’ tto have the same size as ‘H’ and then plot — fv = 0:10:60; tk=0.1; tK=4; theta0...

presque 2 ans il y a | 0

| A accepté

Réponse apportée
How to fill missing time points from a txt file
The tables may need to be manipulated a bit first. I put relevant times in the first column in ‘T1r’. After that, converting...

presque 2 ans il y a | 1

| A accepté

Réponse apportée
EDITED : Generate sphere whose center is not at origin
I made a few adjustments to your original code, adding (or changing) only these: p1 = 1:51; p2 = 52:101; figure scatter3(...

presque 2 ans il y a | 0

Réponse apportée
Error Using Rainflow fonction
The rainflow function only takes vector arguments. What result do you want? In the interim,try this — T1 = readtable('Da...

presque 2 ans il y a | 0

Réponse apportée
sorting values of a matrix column when the other column has the same value
Use the sortrows function, sorting the first column then the second column — A = [0.1 0.1 ; 0.1 -0.3 ; 0.1 0.5 ; 0.1 0; 0.1 -0...

presque 2 ans il y a | 0

| A accepté

Réponse apportée
How to set up the Matrix variables to use Options = optimoptions('lsqcurvefit','algorithm','levenberg-marquardt')
I am not certain how ‘M1T’ and ‘M2T’ enter into this, however witth the ‘K’ values as the independent variables, and the ‘M’ val...

environ 2 ans il y a | 0

| A accepté

Réponse apportée
how to create vector 1 1 1 1 1 1 2 2 2 2 2 2?
An alternative approach — v = reshape(ones(6,1)*[1 2],1,[]) .

environ 2 ans il y a | 0

Réponse apportée
Integral2 MATLAB Function Error: Q = integral2Calc(fun,xmin,xmax,yminfun,ymaxfun,opstruct);
Note that because ‘zprime’ only enters into your calculations in ‘R’ and that is defined as: R = sqrt(a^2 + (z_prime - z_prim...

environ 2 ans il y a | 0

| A accepté

Réponse apportée
Reading a text file using readtable, Matlab stubbornly refuses to accept dates in anything but US-format
You need to pass the options structure to readtable. Perhaps something like this — type('Dave_2024_07_26.txt') opts = d...

environ 2 ans il y a | 0

| A accepté

Réponse apportée
contour plot problem Z must be at least a 2x2 matrix
Anotther option, using the scatteredInterpolant function — x=[80;100;90;90;90] y=[4;4;2;6;4] [X,Y] = meshgrid(x,y); % Polly...

environ 2 ans il y a | 0

| A accepté

Réponse apportée
islocalmax('flat selection') selecting 0 value points
In the lower plot image, if you are referring to the collection of orange asterisks before the start of the variable section (fo...

environ 2 ans il y a | 0

Réponse apportée
Representation of Gabriel's Horn
If you want it to look more like the image you posted in your question, one option is to use the daspect function.. It allows yo...

environ 2 ans il y a | 0

| A accepté

Réponse apportée
How to make bar plot with group mean and add scatter plot on top to demonstrate samples within group?
Apparently the group means are the heights of the bars. Try this — MC1 = randn(50,2)*10 + [80 81]; ...

environ 2 ans il y a | 1

| A accepté

Réponse apportée
how to do a contour plot using function handle?
Provide arguments to ‘M’ and it works — T=linspace(0,2*pi,100); d = linspace(0,2*pi,100) ; [X,Y] = meshgrid(T,d);...

environ 2 ans il y a | 1

| A accepté

Réponse apportée
Eliminate the long number appearing in symbolic calculations
You can conttrol the number of digits displayed by including a second argument (here 7) to your vpa call — syms J1 term = ...

environ 2 ans il y a | 1

| A accepté

Réponse apportée
function find() sometimes doesn't work properly
With Floating-Point Numbers you need to use a tolerance, so with find, usually one of the approaches in tthe second loop will wo...

environ 2 ans il y a | 1

| A accepté

Réponse apportée
how can solve this problem : Conversion to cell from double is not possible.
Perhaps — X = fillmissing(X(:), 'nearest'); .

environ 2 ans il y a | 0

Réponse apportée
Interpolate y and y using a 3D vector with similar length
To do the relatively simple first interpolation, use the interp2 function. Tto draw the surface plot, the best option is the ...

environ 2 ans il y a | 0

| A accepté

Réponse apportée
Genetic Algorithm with a graph
I am not certaiin what you want, however creating an options structure using optimoptions and including the name-value pair 'Plo...

environ 2 ans il y a | 0

Réponse apportée
I enabled fft function in oscillioscope and it saved the data as FFT amplitude (dBV) and frequency domain how ever I want my time domain and ampltude signals original data.
You cannot reliably invert a Fourier transforom unless you also have the phase information. Lacking the phase information, you ...

environ 2 ans il y a | 2

| A accepté

Réponse apportée
I want to plot RMSE from mat file but it gives error
One option is to use the cellfun function (keeping ‘two’ as a cell array). The other option is to use the cell2mat function to ...

environ 2 ans il y a | 0

| A accepté

Réponse apportée
Rotating a line plot to obtain a 360-degree color map
Itt would help to have the data. It also appears that the line is not the same everywhere (it may be part of a matrix), altho...

environ 2 ans il y a | 0

Réponse apportée
Match columns and fill datasets
Using the accumarray function tthis can be done in one line — File_1 = [1 1 1 1 1 ...

environ 2 ans il y a | 0

| A accepté

Réponse apportée
Difference in computational time
It appears to work correctly. What else needs to be done? (W.R.T. ‘Miscellaneous’, you can use the daspect funciton or diffe...

environ 2 ans il y a | 0

| A accepté

Réponse apportée
How to use contourf to plot a mesh not generated in matlab, i.e. imported mesh coordinates from abaqus. The issue is that coordinates are not sequential.
It would help tto have your data. Since there are (x,y,z) coordinates (there can be duplicates), I would use the scatteredInt...

environ 2 ans il y a | 1

Charger plus