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

4년 초과 전 | 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...

4년 초과 전 | 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...

4년 초과 전 | 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...

4년 초과 전 | 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...

4년 초과 전 | 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...

4년 초과 전 | 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...

4년 초과 전 | 답변 수: 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)

4년 초과 전 | 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...

4년 초과 전 | 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...

4년 초과 전 | 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...

4년 초과 전 | 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...

4년 초과 전 | 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...

4년 초과 전 | 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,...

4년 초과 전 | 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...

4년 초과 전 | 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...

4년 초과 전 | 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...

4년 초과 전 | 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...

4년 초과 전 | 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...

4년 초과 전 | 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...

4년 초과 전 | 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...

4년 초과 전 | 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...

4년 초과 전 | 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...

4년 초과 전 | 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...

4년 초과 전 | 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...

4년 초과 전 | 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...

4년 초과 전 | 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...

4년 초과 전 | 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 ...

4년 초과 전 | 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...

4년 초과 전 | 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...

4년 초과 전 | 1

더 보기