已回答
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...

2 months 前 | 0

| 已接受

已回答
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...

2 months 前 | 0

| 已接受

已回答
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...

2 months 前 | 0

已回答
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...

2 months 前 | 0

| 已接受

已回答
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]; ...

2 months 前 | 1

| 已接受

已回答
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);...

2 months 前 | 1

| 已接受

已回答
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 = ...

3 months 前 | 1

| 已接受

已回答
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...

3 months 前 | 1

| 已接受

已回答
how can solve this problem : Conversion to cell from double is not possible.
Perhaps — X = fillmissing(X(:), 'nearest'); .

3 months 前 | 0

已回答
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 ...

3 months 前 | 0

| 已接受

已回答
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...

3 months 前 | 0

已回答
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 ...

3 months 前 | 2

| 已接受

已回答
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 ...

3 months 前 | 0

| 已接受

已回答
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...

3 months 前 | 0

已回答
Match columns and fill datasets
Using the accumarray function tthis can be done in one line — File_1 = [1 1 1 1 1 ...

3 months 前 | 0

| 已接受

已回答
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...

3 months 前 | 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...

3 months 前 | 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 ...

3 months 前 | 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(...

3 months 前 | 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...

3 months 前 | 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...

3 months 前 | 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...

3 months 前 | 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 ...

3 months 前 | 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...

3 months 前 | 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...

3 months 前 | 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(...

3 months 前 | 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...

3 months 前 | 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; ...

3 months 前 | 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...

3 months 前 | 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...

3 months 前 | 0

加载更多