回答済み
Find a random position in a vector where the value is zero
% test data (includes zeros and imaginary numbers) A = [1i 4/1j 7 0 99 0 0 0 8*1j 0 0 0 8 9 0 -7 0]; % find indices of zeros...

約5年 前 | 2

| 採用済み

回答済み
Area under the curve ignoring axis values (Absolute area)
@Ganesh Naik Here's a new answer that uses ginput to "select" data points along the line for definiing the area of interest. Y...

約5年 前 | 0

回答済み
How can extract data in scatter plot??
% test data x = rand(1, 100); y = rand(1, 100); % find elements for class 1 (x is between 0 and 0.1) idx = find(x >= 0 & x...

約5年 前 | 0

| 採用済み

回答済み
Area under the curve ignoring axis values (Absolute area)
The trapz function uses integration so the result is the area under the curve. That's not what you want. I suggest you first c...

約5年 前 | 0

| 採用済み

回答済み
How to search closest coordinate values in a Lat Long Z data
You can do this with the pdist2 function. For latitude and longitude, usually the haversine method is used. Google it if you w...

約5年 前 | 0

回答済み
Using writetable in a for loop to create new txt/csv files for each step
Under the assumption your code is working fine except for the filename issue, here's what I suggest. Use this to create a new f...

約5年 前 | 0

| 採用済み

質問


Problem using ranova for analysis of variance
I'm trying to use ranova to analyse data from a fairly simple experiment, but am not successful as yet. The data (60x3) are att...

約5年 前 | 1 件の回答 | 0

1

回答

回答済み
sorting a matrix of 4 rows by the fourth element and outputting of combinations that make the 4th row element
At the end of your code, add sortrows(combs,4)

約5年 前 | 0

回答済み
How do I center my time-history plot at zero using code
Is the offset you are subtracting the mean of the values in the corresponding arrays? If so, just subtract the means: plot(t,x...

約5年 前 | 0

| 採用済み

回答済み
Find values in 3D matrix with given indices
Unless I'm missing something, this is just a simple matter of finding the indices corresponding to the latitude 77:81 elements a...

約5年 前 | 0

| 採用済み

回答済み
Number of registered results by the number of total experiments in a pie chart
Here's one way to make the labels you want: % test data hEQ = [5 1 1 1 1 1]; % create labels for pie chart total = sum(hEQ...

約5年 前 | 1

| 採用済み

回答済み
How can I add confidence bounds to the plot?
Seems you are working with a linear model. Also, your attached plot is quite cluttered. It will get worse if you add confide...

約5年 前 | 1

| 採用済み

回答済み
Filter table based on time and make calculation
You don't need a loop. At a high level, here's what you need to do. Read the data into MATLAB, probably into a table using the...

約5年 前 | 1

| 採用済み

回答済み
Arrange the matrix by replace a part to another part
Assuming your matrices are conveniently sized... A1=ones(12); A2=ones(9)*2; A3=ones(6)*3; A4=ones(3)*4; A = A1; A(4:end,...

約5年 前 | 0

| 採用済み

回答済み
How to highlight a portion of time series on a plot?
Here's what I put together. I'm assuming you want 64 separate plots. % test data (timeseries) nRow = 64; % adjust as per yo...

約5年 前 | 0

| 採用済み

回答済み
Easiest way to load structure array from a text file
To save the data in the structure C in a file... save('savedata.mat', 'C'); To retrieve the data as a structure C later... lo...

約5年 前 | 0

回答済み
read 2 digits in a txt file using %f
If you examine the documentation for fscanf, it states that the correct formatSpec to use when reading floating-point numbers is...

約5年 前 | 0

回答済み
How to end loop after key is press
Here's an arrangement I've used with good success in the past. The loop executes indefinitely until a key is pressed. f = fi...

約5年 前 | 2

| 採用済み

回答済み
How to find the noisy signal using fourier transform for this data?
Here's what I put together. The input signal is somewhat noisy, but it is also periodic @ 34.4 Hz. f = 'https://www.mathworks...

約5年 前 | 0

回答済み
Save number of iterations in a for loop
@Rajvi AmleThis script shows one approach to plotting the results of your simulations. The data loaded are the t and x data col...

約5年 前 | 0

回答済み
how can i plot the amplitude spectrum of these signals
Do you want the FFT of the combination of the 20 Hz and 50 Hz signals? If so, then this might be the sort of plot you are after...

約5年 前 | 0

回答済み
How to remove NaN from 2 column vectors?
X = [2 4 8 NaN 13 NaN 3 6 NaN 38 40 11]; Y = [NaN NaN 2 NaN 10 67 1 NaN NaN 19 26 NaN]; nanLogical = isnan(X) | isnan(Y); X(n...

約5年 前 | 0

| 採用済み

回答済み
start to write for a specified location using fprintf
Here's a solution. Make sure you use "r+" when opening the file, otherwise you'll overwrite the first line. fid = fopen('testd...

約5年 前 | 0

| 採用済み

回答済み
start to write for a specified location using fprintf
fid = fopen('testdata.txt', 'w'); % change, as needed fprintf(fid, ' result_1 result_2\n'); fprintf(fi...

約5年 前 | 0

回答済み
Removing top and bottom outliers
Yes, the rmoutliers function will do the trick. After removing the top and bottom 5% of the values, the vectors below are reduc...

約5年 前 | 0

| 採用済み

回答済み
Split a target date interval into seasons and find the percentile of days for each season
There might be a way to shorten this, but I think it achieves what you are after. You didn't mention the year, so I set this up...

約5年 前 | 0

| 採用済み

回答済み
Plot of 3D colour scatter graph
I think this is more or less what you're after: f = 'https://www.mathworks.com/matlabcentral/answers/uploaded_files/679873/poin...

約5年 前 | 0

| 採用済み

回答済み
Plot 2D vector field
The reason you aren't seeing any vertical component in the quiver arrows is that the data in the V argument (wi) are very small ...

約5年 前 | 0

回答済み
How to index the values of an array using a series of rows, column indices?
If you want to pull those three values from A and concatenate them, as in your output, then just retrieve the three elements usi...

約5年 前 | 0

回答済み
repeat rows and export to txt file
I think this is more or less what you're after: % test data (read from file) A = [1 8;2 7;3 6;4 5] x = 3; % number of times t...

約5年 前 | 1

さらに読み込む