Respondida
Want to truncate an array
There are a few options, including using the vpa function in the Symbolic Math Toolbox, and to use sprintf to display the values...

alrededor de 2 meses hace | 0

Respondida
bug in sprintf 2024a, can't use other variable and just repeating the first variable
The residue funciton produces column vectors in its output. To use sprintf with them, concatenate them in a matrix and then tra...

alrededor de 2 meses hace | 0

| aceptada

Respondida
Graph lines not showing
See if the yline function will do what you want.

alrededor de 2 meses hace | 1

Respondida
Two sets of data with two date ranges and y-axis values
Try this — x1 = 1:250; y1 = 20*sin(2*pi*x1/100) + 20 + randn(size(x1))*5; x2 = 15:250; y2 = cos(2*pi*x2/150)*60 + 150 + ...

alrededor de 2 meses hace | 1

| aceptada

Respondida
Parameters identification providing derivative
The differential equation needs to be integrated in order to use . This does not appear to be as straightforward as I would hav...

alrededor de 2 meses hace | 1

| aceptada

Respondida
How to use values from excel file in genetic algorithm
Use the readmatrix function instead of readtable since there are no variable names. It produces a matrix that can be address...

alrededor de 2 meses hace | 1

| aceptada

Respondida
How to do fft of a csv file to plot amplitude spectrum
See the documentation for both fft and nufft. One of those should apply to your problem. Another optioon is the pspectrum fu...

alrededor de 2 meses hace | 0

Respondida
Parameter estimation of SEIHRDBP model
The time values are incorrect. The complete table of those values should be — Date Infected Death ____ ___...

alrededor de 2 meses hace | 0

| aceptada

Respondida
Fitting an custom equasion where i only want to optimize specific parameters
You would need to supply pre-determined values for ‘sigk’, ‘h1’, ‘g1’, and ‘Dwir’ if you have them (you have already calculated ...

alrededor de 2 meses hace | 1

Respondida
Grid in MIMO nyquist diagram
I am not certain what you want to do or how much of the documentation you have explored. Most of the Control System Toolbox a...

alrededor de 2 meses hace | 1

Respondida
Fittype issue: unrealistic results and problems with upper and lower bounds
The bounds may not be set correctly. Note that while ‘a’ is supposed to be between 0.1 and 1, your bounds for it are between 10...

alrededor de 2 meses hace | 0

| aceptada

Respondida
Parameter estimation of SEIHRDBP model
Thank you for quoting my code! The problem was here: c0=theta(end-3:end); use this instead: c0=theta(end-7:end); Since m...

alrededor de 2 meses hace | 0

| aceptada

Respondida
unable to plot semilogy properly
The easiest way to solve that is to plot each curve on its own y-axis using the yyaxis function — % QPSK M = 8; k = log2(M)...

alrededor de 2 meses hace | 0

| aceptada

Respondida
datetime don't displays the correct order
The 'InputFormat' and 'Format' name-value pairs are not the same. You need to specify them separately — aaa=datetime(dataa,...

alrededor de 2 meses hace | 0

| aceptada

Respondida
How to get daily max, min, and mean from a timetable?
Your groupsummary call is correct, except for not putting the data variables in square brackets (or curly braces). With that...

alrededor de 2 meses hace | 0

| aceptada

Respondida
I'm unsure of why there is an error on F=@x
The statement order is reversed from what it should be — f=@(x)exp(-0.5*x)*(4-x)-2; df=@(x)exp(-0.5*x)*(-3+0.5*x); Xs = n...

alrededor de 2 meses hace | 1

| aceptada

Respondida
small floating point has been considred as zero value!
Your code works correctly when I run it here — x=0.16 if x>0.1 d=1 else d=0 end d .

alrededor de 2 meses hace | 0

Respondida
Find Area under the curve as a non negative
It would help to have the data. Perhaps selecting everything with both x and y coordinates greater than zero, and then integr...

alrededor de 2 meses hace | 0

| aceptada

Respondida
Transparency in scatter plot
It would help to have representative data. I suspect the vector you are using as ‘C’ has very low positive values (perhaps on ...

alrededor de 2 meses hace | 0

Respondida
readtable() ignores variable names and loses data when "extra" cells contain values
‘How can I tell readtable() to ignore any extraneous cells to the right of the main data that starts in A1?’ Without a file t...

alrededor de 2 meses hace | 1

Respondida
Importing data from outside matlab directory?
Probably the easiest way is to use the fullfile function to generate the complete path to the file. To access other files in th...

alrededor de 2 meses hace | 0

Respondida
Acceleration of code by replacing two nested for-loops
This could be difficult with your code because of the multidimensional nature of ‘B’, however the usual approach is to create m...

alrededor de 2 meses hace | 0

Respondida
Viewing a house in MATLAB
The walls and roof needed duplicates with some offsets to plot correctly. Other than that, the patch arguments are set up to be...

alrededor de 2 meses hace | 0

| aceptada

Respondida
How to develop "a model" from a given m-file of regression analysis?
If your data are the same as in your earlier post, you can get all that information from the Curve Fitting Toolbox result. Th...

alrededor de 2 meses hace | 2

| aceptada

Respondida
how to plot a diagram that includes many excel data?
One approach is to read the files in to separate cell arrays, then vertically concatenate them, and then choose the ‘Absolute T...

alrededor de 2 meses hace | 0

| aceptada

Respondida
Replace Before A Specific Character
Assuming that you want to replace it with '9999' — diffStr="4026y 4 mo 13d 9h 26m 20.145s" val = num2str(9999) diffStr = reg...

alrededor de 2 meses hace | 0

Respondida
How can I plot the linear variation?
Calculating the llinear regression was straightforward, however calculating and plotting the regression plane was something of a...

alrededor de 2 meses hace | 1

| aceptada

Respondida
Creating multiple cylinders in different coordinates
Perhaps this — [X,Y,Z] = cylinder(1,20); cm = colormap(turbo(10)); figure hold on for k = 1:10 ofst = randi(9,2);...

alrededor de 2 meses hace | 0

| aceptada

Respondida
How to find corresponding frequencies for frequency magnitudes in FFT analysis
I am not certain what you want from these calculations. I used my own fft call (since I found it difficult to understand your...

alrededor de 2 meses hace | 0

| aceptada

Cargar más