已回答
For loop extracting variable
Not quite sure your data type. So below just a structure that you can potentially use. within the for loop for iF = 1:yourFile...

4 years 前 | 0

已回答
quickest way to scan excel column for keyword
Could try this: suppose that you don't have a column name tbl = readtable('yourExcelFile', 'ReadVariableNames', 0); % N = t...

4 years 前 | 0

| 已接受

已回答
Help with mann whitney U test and p-value.
Use ranksum [p, h, stats] = ranksum(x, y);

4 years 前 | 1

| 已接受

已回答
Creating a mtarix from results of a for loop that creates vectors
Not really understand what you intended to do. But based on your code, you could get an array by accumulating the vector you get...

4 years 前 | 0

| 已接受

已回答
Original Signal from fft - without using ifft
Matlab fft results are without the 1/N term. If you plot the amplitude spectrum you will find out that the peak amplitude is cle...

4 years 前 | 0

| 已接受

已回答
Logistic Regression S-Curve Fit
Do you want to plot logit(y) against your predictor or you want to plot y against x? You could fit your y by x using fitglm with...

4 years 前 | 0

已回答
(Again) plots do not appear on the graph
Without data it’s difficult to tell. You tried set a break point and see if it ever appears any points? Based on your descrip...

4 years 前 | 0

| 已接受

已回答
FFT - wrong frequency
Well, you need to understand what you are doing with each of these variables. Your code is kind of weird as all things you need ...

4 years 前 | 0

已回答
Add n+1 element to a vector
If your X is a row vector, using newX = [X, aNewElement]; If your X is a column vector, using newX = [X; aNewElement];

4 years 前 | 0

| 已接受

已回答
matlab loops break and continue commands
You are almost there. Just need a seperate counter that force the loop to break if it accumulates to 3. n = input('Enter a nu...

4 years 前 | 0

已回答
Help in shuffle test data ?
"he first line become the third line and the third line becoms the forth line" your example doesn't meet what you described. I...

4 years 前 | 1

| 已接受

已回答
how to write a detection algorithm for the peaks of a signal
That depends on what exactly you meant by peaks of a signal. If you want to have all local maximums, the easiest way I think is ...

4 years 前 | 0

已回答
i want code for the below given task
close all; clear; %% this is an examplary ECG recording with sampling frequency 200 hz y = load('2GCCY.txt'); fs = 200; N...

4 years 前 | 1

| 已接受

已回答
plot label with latex symbol
You need to have the leading and ending symbol $. e.g., ylabel('$J_{1}(\rho)$','interpreter','latex')

4 years 前 | 1

| 已接受

已回答
Plot with varying legend in for loop
An easier work around i think is that you store txt during each loop in a string array, or a cell array, and plot legend afterwa...

4 years 前 | 1

| 已接受

已回答
Extract rows from table fullfilling the condition of interval
You may want to convert that specific column to double format, and the conditional operation would become easier. % a test tbl...

4 years 前 | 0

已回答
Add row name from uitable to excel
Better using writetable in this case I think. You can specify WriteRowNames as true. writetable(yourTable, filename, “WriteRo...

4 years 前 | 1

已回答
The title of a plot containing the data's file name.
You have filename already when you load the data. Just need to combine this with the char array you have. Try title(['UTM Pos...

4 years 前 | 0

| 已接受

已回答
Changing the colour of the lines in a legend.
You have 250 lines and with the legend function you are actually only showing the legend for the first 5 lines, which are red ba...

4 years 前 | 0

已回答
Which graph function to use?
You can use errorbar function to make this.

4 years 前 | 0

| 已接受

已回答
Hot plot this type of figure
you can use plot3 to get these lines and markers done. you can use fill3 to make the patches. set alpha value to a number so th...

4 years 前 | 0

| 已接受

已回答
Protein sequence manipulation for adding elements before or after the sequence.
The easiest way to add N zeros before it can be done by: [repmat('0', 1, N) yourProSeq];

4 years 前 | 0

| 已接受

已回答
Calculating with Methods from Classes
You have too many class methods that are not really methods specific for the class, as they never accept your object handle as a...

4 years 前 | 0

已回答
How can I make plot3 show on the top of the images?
Below example works fine C = [0 2 4 6; 8 10 12 14; 16 18 20 22]; clims = [4 18]; imagesc(C,clims) hold on; plot3([1 4], [1 ...

4 years 前 | 0

已回答
Array indices must be positive integers or logical values.
What are you trying to do? In inner loop, b is your loop index. It is seen as a scalar. There aren't any b(sounds6_) if sounds6_...

4 years 前 | 0

已回答
How can I set class properties with a vector from another script?
In your class construct you could let it accept input parameters. e.g., methods function this = Holtrop(varargin) ...

4 years 前 | 0

| 已接受

已回答
Is it possible to have a table with a numerical index instead of strings?
Why do you want to make the time as row names? I think it's better to keep it as one of the variable in the table. It is not nec...

4 years 前 | 1

| 已接受

已回答
I want annual data from monthly data (sum of every 12 months)
Hi, you again lol and me again I thought it would be easier for you to solve this with my previous answer regarding the season ...

4 years 前 | 1

| 已接受

已回答
How to disable Subplot XtickLabel designed with App Designer
have you tried update ax1 XTickLabel after the plot? add ax1.XTickLabel = ''; after your plot line and see.

4 years 前 | 0

| 已接受

加载更多