답변 있음
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...

18일 전 | 0

| 수락됨

답변 있음
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...

19일 전 | 1

답변 있음
Coloring area between two graphs in specific interval
It would help to have the code, or at least a file thtat I can get the information from. Lacking that, a bit of creativity ...

21일 전 | 0

| 수락됨

답변 있음
Problem with legend: colors don't match value of variable
I can’t run this since ‘fn’ is missing. n = 101; x = linspace(-100, 100, n); y = linspace(-100, 100, n); [X, Y] = meshgrid(...

21일 전 | 0

| 수락됨

답변 있음
Hello, I would like to know how to draw a shaded region like this?
Perhaps something like this — x = linspace(0, 5, 25).'; y = 5*exp(-0.5*x) + randn(size(x)); fcn = @(b,x) b(1).*exp(b(2).*x...

21일 전 | 0

| 수락됨

답변 있음
I want to access multiple parameters that I have defined in a function
Since the ODE integration funcitons only use the first output of the ODE functiton, one option is to add them as outputs, then w...

22일 전 | 0

| 수락됨

답변 있음
Locate peaks of an fft without using 'findpeaks'
In R2023a you should have the islocalmax function, that does essentially the same as findpeaks, although with slightly different...

22일 전 | 0

답변 있음
Why such a fuss with ndgrid and meshgrid issues?
I’m not certain what the problem is. I generally prefer scatteredInterpolant to griddata. The choce of meshgrid or ndgrid ...

22일 전 | 1

답변 있음
lsqcurvefit not working properly
It is difficult for me to understand what you are doing in this version of your code. You have a curve that is in part an exp...

22일 전 | 1

| 수락됨

답변 있음
Overwriting the maximum function evaluation
The options structure to lsqcurvefit must be the argument to it, since (except for name-value pair arguments), arguments to MAT...

23일 전 | 0

| 수락됨

답변 있음
How to use fft to analyse the refelction specturm?
It would help to have ‘xx.xlsx’, however lacking it, I will synthesize something like it — Fs = 0.1; L = 1000; t = linspace(...

24일 전 | 1

| 수락됨

답변 있음
fdesign.lowpass; error messages of one of examples
@Jongsoo Kim — Your posted code works in R2024a, as demonsttrated here. You did not post the version you are using, and there c...

24일 전 | 0

답변 있음
Dividing daily rainfall data in to monthly data
Use a timetable and the retime function, if you have them — Rainfall = rand(ceil((1996-1961)*365.25),1)*10; ...

24일 전 | 0

답변 있음
Where is the polyIntersect.m function in R2024 and how do I load it ?
I can’t find it in the online documentation. There are several Mapping Toolbox functions, specifically polyxpoly, as well as ot...

24일 전 | 1

| 수락됨

답변 있음
To draw campbell diagram
If you have the Signal Processing Toolbox R2015b or later, see if the rpmfreqmap function will do what you want. From its doc...

25일 전 | 0

답변 있음
stacked plot with 2 time series of different length and spacing
There is a way to use stackedplot with them, however it requires that they be interpolated to the same x-axis vector — files =...

26일 전 | 0

답변 있음
Curve fitting with loop
I would do something like this, puttting the entire code in a loop and saving the fitted parameters (and possibly the plots as w...

27일 전 | 0

| 수락됨

답변 있음
legend symbol disappears when plotting a polyshape
I don’t have any specific suggestions. It works with one output, however not more than one. That the legend function has mor...

29일 전 | 1

| 수락됨

답변 있음
Can we sort the variables of a table as per the values in a particular row.
I’m not certain how you were sorting them. This seems to work — T1 = readtable('Data.xlsx') T1(end-10:end,:) VN = T1.Prop...

29일 전 | 0

답변 있음
Using iFFt to convert acceleration PSD ((m/s²)²/Hz) to random acceleration time series (m/s²)
You cannot invert a power spectral density result, or any result using overlap-add to calculate the spectrum. The reason is si...

30일 전 | 0

답변 있음
How to plot a slice of the focal point in the radial direction.
This is probably straightforward, and only requires getting the data in the second plot image at the 0 value in either direction...

대략 1개월 전 | 0

| 수락됨

답변 있음
Numerical Input in Pop-up box
Try something like this — trial_info = inputdlg(["What inch did you start from?","What inch did you end at?","What trial numbe...

대략 1개월 전 | 0

| 수락됨

답변 있음
Question about combining surf and plot3
TThe first ‘surface plot’ is just a patch plot at that goes from 0 to 500 in each (x,y) direction, at a z-value of 0.002, as c...

대략 1개월 전 | 0

| 수락됨

답변 있음
Plot 3D data from excel file
Use the scatteredInterpolant function to create the surface. Using the provided data — T1 = readtable('Copy of data.xlsx') ...

대략 1개월 전 | 0

답변 있음
Savitzky-Golay filtering on emg signal
Calcualte the Fourier transform of the data (fft) to determine tthe frequency content of the signal, and then use a frequency-se...

대략 1개월 전 | 0

답변 있음
how to specify numbers in an array with varying steps
For ‘N2’ and others, just use the individual aray indices in a vector — N = rand(1,14) N2 = N([2:4 10:11]) N2 = N([2,3,4,10,...

대략 1개월 전 | 0

| 수락됨

답변 있음
Processing and identifying noises in EEG signal
The data file doesn’t exist. At least it’s not available to me. It’s bettter to attach it here, anyway. If it has an excluded...

대략 1개월 전 | 0

| 수락됨

답변 있음
Making an X ray image out of x, y, z coordinates ERROR
Ir may be necessary to add the name-value pair: 'EndOfLine','\r\n' to the textscan call, since otherwise textscan fails to re...

대략 1개월 전 | 0

답변 있음
ylabel changes position with ax.YAxisLocation = 'origin'
The axis labels are text objects with the same properties. (Although not all the properties, such as 'VerticalAlignment' are l...

대략 1개월 전 | 1

| 수락됨

답변 있음
How to do a cross-multiplication by group in a table
I am not certain what you want to do, however the fillmissing function can replace the NaN values in ‘d’ with the scalar 400. ...

대략 1개월 전 | 0

| 수락됨

더 보기