回答済み
Latex, sprintf and variable that changes
Your sprintf statement has fields for 3 variables, however you only provide 2. Provide all 3 and it works — i = 1; j = 1; ...

13日 前 | 0

| 採用済み

回答済み
Why I have the error Genetic algorithm script error no Global Optimization Toolbox ?
You have to license, download and install the Global Optimization Toolbox. There is no separate license for gamultobj. You m...

13日 前 | 0

回答済み
I need to plot precipitation data. First, adjust y limits of a stacked plot to accommodate totals for the month. Second, have dates on the x axis.
Convert the table to a timetablee and ‘Column2’ will automatically be plotted as a funciton of the time variable. However I d...

13日 前 | 1

回答済み
How to get the Z-transform and tf of this function y[n] = 0,5y[n − 1] + x[n] ?
Perhaps something like this — syms n x(n) y(n) z t X(z) Y(z) assume(n>=0 & in(n,"integer")) Eqn = y(n) == 0.5*y(n - 1) + x(...

13日 前 | 0

回答済み
Finding and integrating peaks in a data array
The findpeaks function will accurately locate the peaks. Integrating them depends on what you want to do. In the past, I have ...

14日 前 | 0

回答済み
Finding length of time in between peaks.
I already addressed this in my Answer to your previous question on exactly the same topic. If you are having problems with it...

14日 前 | 0

| 採用済み

回答済み
whats wrong with this code?
It works here. How are you calling your ‘aero_drag’ function? dens = rand v = rand A = randn(1,5) drag = aero_drag(de...

14日 前 | 1

回答済み
usage of ode45
imshow(imread('WhatsApp Image...16.45 PM.jpeg')) syms M(t) I_1(t) I_2 V(t) t g mu A Y T Eq1 = diff(M) == -g*V*A Eq2 = diff(...

14日 前 | 0

回答済み
Identifying PTT of ECG and PPG signals
Without your data, it is going to be nearly impossible to suggest an approach to this. Also, without your data, it is impossibl...

14日 前 | 0

| 採用済み

回答済み
Matlab fft plot axes
This would be my approach — Fs = 1000; Fn = Fs/2; L = 60; t = linspace(0, Fs*L, Fs*L+1).'/Fs; ...

15日 前 | 0

回答済み
Omit nans from data set when calculating weights
Since NaN values are considered to be ‘missing’, to remove them from a specific vector (or matrix), you can use the rmmissing fu...

15日 前 | 1

回答済み
Can anyone explain the difference in results for rainpl function between R2016b and R2021a?
The earliest available online information on rainpl is R2019a, so any changes between R2016b and R2019a are unavailable. (I don...

15日 前 | 0

回答済み
how to plot time and frequency domain by using FFT from CSV file?
Try this — A = readmatrix('FILE060.CSV'); Asz = size(A) t = A(:,1); s = A(:,2:end-1); figure plot(t, s) grid xlim([m...

15日 前 | 0

| 採用済み

回答済み
Delete rows in a given array based on values in another array
Perhaps this — A = randi(99, 50, 1); Abfr = buffer(A,10) % Show Everything In 'A' B = randi(99, ...

15日 前 | 0

| 採用済み

回答済み
How to move the position of 2D projection of a 3D plot along the Z axis of the same figure?
Use surfc instead of surf, and then make appropriate changes to 'ZLocation' and 'FaceColor' in the contour part of the plot. ...

15日 前 | 0

| 採用済み

回答済み
Error using sym/matlabFunction>getOptions "Invalid Values"
As noted, the right-hand-side of ‘ode’ is 0, and that is not actually a differential equation. The left-hand-side is. The mi...

16日 前 | 0

回答済み
an ode with arguements
You have five differential equations and three initial conditions. The initial conditions vector must have the same length a...

16日 前 | 0

回答済み
Identify point in signal where it moves away from zero
Your signals are difficult to work with. That there are several together makes this more challenging than it might otherwise ...

17日 前 | 0

回答済み
bar of mean of last 3 entries for 2 data sets
It would help to have your data. Perhaps something like this — Data1 = randn(30) + randn(30,1); Data2 = randn(30) + randn(...

17日 前 | 0

回答済み
How to display a 150x150x150 matrix?
There are too many to plot here, so I only plot every 10 (of 150). Try this — Uz = unzip('microint0.mat.zip'); LD = load(U...

17日 前 | 0

| 採用済み

回答済み
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 ...

17日 前 | 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...

18日 前 | 0

回答済み
Make a surface plot
Creating surface plots from your data is straightforward using the scatteredInterpolant function. Once the ‘Cm’ matrix is creat...

19日 前 | 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...

19日 前 | 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 =...

20日 前 | 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,...

20日 前 | 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...

20日 前 | 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) .*...

21日 前 | 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...

21日 前 | 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...

22日 前 | 0

さらに読み込む