답변 있음
Combining multiple rows from one matrix to another matrix
Use the reshape function — P=[1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 ...

8일 전 | 0

답변 있음
How do I fix the error "Execution of script interp2 as a function is not supported"?
You have a script that you named ‘interp2’ and that is throwing the error. The solution is to re-name the script to something...

9일 전 | 0

답변 있음
Make a surface plot
Creating surface plots from your data is straightforward using the scatteredInterpolant function. Once the ‘Cm’ matrix is creat...

9일 전 | 0

답변 있음
plotting data with different dimension in a 2d line plot
It would help to know what the (1x30) vector has in it, and how it was created. One option is to reshape it so that it fits w...

10일 전 | 0

답변 있음
is there a way to make the 0 x and y axis bold?
To make only the tick labels bold, use the FontWeight property in the NumericRuler Properties Ax = gca; Ax.XAxis.FontWeight =...

10일 전 | 0

답변 있음
Interpolating from one grid to another
It appears that ‘Temp1’ seems to not have made it to the save function argument llist. This interpolates ‘Temp2’ to the (X1,...

11일 전 | 0

| 수락됨

답변 있음
Plotting surface charts when z is not a function of x or y
It would help to have the spreadsheet. The data can be extracted from it using either table or matrix indexing, once it is i...

11일 전 | 0

| 수락됨

답변 있음
Fit gaussian to X-Y data (one X column, multiple Y column), for each Y column from an excel file.
One approach — T1 = readtable('X-Y_gauss_matlab.xlsx') figure plot(T1{:,1}, T1{:,2:end}) grid gausfit = @(b,x) b(1) .*...

11일 전 | 0

| 수락됨

답변 있음
how can I delete some rows from a matrix
This creates a new matrix with only the odd rows from the original matrix — A = randi(9, 10,3) Anew = A(1:2:end,:) See the d...

11일 전 | 0

답변 있음
Why are all of my axes flipped in this figure?
Without your data I cannot run your code. The documentation states that the roll, pitch, and yaw angles have to be in degrees...

12일 전 | 0

답변 있음
Cannot read .xslx file
The R2024a version of readtable has no problems with it. Does this seem to be correct? T1 = readtable('Agora_I_4985.xlsx', '...

13일 전 | 0

답변 있음
Plotting an Inverse Laplace Function
If you have the Control System Toolbox — % (s + 100000) 147573952589676412928 14757395258967641292800000 % ----------------...

13일 전 | 0

답변 있음
Interpolate line data to grid matlab
Use the interp1 function — x = [0.0 5.0]; y = [1.0 3.8]; figure plot(x, y) grid hold on Ax = gca; xtix = Ax.XTick ...

13일 전 | 0

답변 있음
Matlab Legend Function dose not work at all
There are no errors when I run your code — x = linspace(0,pi); y1 = cos(x); plot(x,y1) hold on y2 = cos(2*x); plot(x,y2)...

13일 전 | 0

| 수락됨

답변 있음
Symbolic solution is too long
I added the simplify calls and let this run for a while in MATLAB Online — clear clc tic syms t y1(t) y2(t) y3(t) y4(t)...

13일 전 | 0

답변 있음
Displaying error bars on scatter plot (Bland-Altman plot)
We are missing ‘mean_diff’ and ‘std_diff’ . Using rand to correct for that for now. The errorbar plot needs 2 to 4 arguments...

13일 전 | 0

| 수락됨

답변 있음
I want to find two missing parameters in an ODE system of equations using regression/optimization in MATLAB
I do not completely understand your problem. If y9ou have values for all the variables as functions of time from the beginning ...

13일 전 | 0

답변 있음
Peter H Charlton's Pulsewave Analyse and ppg-beat tools are not working well.
The best way to design a filter is to first calculate the Fourier transform of the signal, and then use that to design the frequ...

13일 전 | 1

답변 있음
Create mean y values by multiple groups in one graph
Try this — T1 = array2table([1 2000 45 1 0 0 0 1 2001 56 1 0 0 0 1 2002 23 1 0 0 0 1 2003 56 1 0 0 ...

14일 전 | 0

답변 있음
Why am I getting an error when running this R2024a example in R2023b?
The area function was introduced in R2024a, according to the documentation.

15일 전 | 0

| 수락됨

답변 있음
Add zero padding to fft
Let the fft function add it to the original time domain signal vector (it pads it at the end) by specifying the second argument ...

15일 전 | 0

| 수락됨

답변 있음
shifting of resonant frequency
I have no idea what ‘xlimit’ refers to, however the resample function could work.

15일 전 | 0

답변 있음
How to draw a line in a bar chart in complete x area
The easiest option is to use the yline function — cat=categorical({'a','b','c'}) data = [37.6 24.5 14.6]'; errhigh = [2.1 ...

16일 전 | 0

답변 있음
Help me determine why the Isolocalmax doesn't work after applying MinProminence.
You need to check the variable values. I cannot run this here (the Run feature is currently not working, at least for me, alt...

16일 전 | 0

답변 있음
when using ode45 with the for loop, should I put the initial conditions inside or outside the for loop?
It is difficult to understand what your code does. If you are changing the parameters of the differential equations inside the ...

16일 전 | 0

| 수락됨

답변 있음
How to extract a for loop output after each iteration?
Perhaps — u(j,m,p,t) = ... ; in an appropriate place in the loop. This matrix could be huge and difficult to deal with. ...

18일 전 | 1

| 수락됨

답변 있음
Creating three shaded regions in a loglog plot
Perhaps something like this — R = 8.31; N = 6.022e23; Dia_air = 3.5e-10; P = 101325; Kn_1 = 0.1; Kn_2 = 10; Dia_al =...

19일 전 | 1

| 수락됨

답변 있음
How to display a symbolic formula without substitutions "where"?
@reincornator — I usually put this: sympref('AbbreviateOutput',false); just after the syms call in my code to prevent all the...

19일 전 | 1

답변 있음
Make a surface (interpolated colors) plot with contour lines over it
You can use a surfc plot with tweks to the contour plot, and an appropriate view call — [X,Y,Z] = peaks(250); figure hs = ...

19일 전 | 0

| 수락됨

답변 있음
How to get x value for a given y value in a interp1 figure?
To get both of them — vv=[0.190934428093434,0.277000826121106,0.477820361464529,0.703789686451856,1,0.703789686451856,0.477820...

19일 전 | 1

더 보기