Respondida
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...

alrededor de 4 años hace | 0

Respondida
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...

alrededor de 4 años hace | 0

| aceptada

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

alrededor de 4 años hace | 1

| aceptada

Respondida
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...

alrededor de 4 años hace | 0

| aceptada

Respondida
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...

alrededor de 4 años hace | 0

| aceptada

Respondida
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...

alrededor de 4 años hace | 0

Respondida
(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...

alrededor de 4 años hace | 0

| aceptada

Respondida
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 ...

alrededor de 4 años hace | 0

Respondida
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];

alrededor de 4 años hace | 0

| aceptada

Respondida
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...

alrededor de 4 años hace | 0

Respondida
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...

alrededor de 4 años hace | 1

| aceptada

Respondida
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 ...

alrededor de 4 años hace | 0

Respondida
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...

alrededor de 4 años hace | 1

| aceptada

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

alrededor de 4 años hace | 1

| aceptada

Respondida
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...

alrededor de 4 años hace | 1

| aceptada

Respondida
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...

alrededor de 4 años hace | 0

Respondida
Need Help Indexing. I have a 1x12 cell array with each cell containing a 120x2 double. I need to use a for loop to index all the values in every of row in the second column of the 120x2 double and store them in their own 1x12 matrix.
Do you necessarily do with a for loop? If not, you don't need one. % an example tst = cell([1, 12]); tst(:) = {randn(120, 2)}...

alrededor de 4 años hace | 0

Respondida
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...

alrededor de 4 años hace | 1

Respondida
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...

alrededor de 4 años hace | 0

| aceptada

Respondida
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...

alrededor de 4 años hace | 0

Respondida
Which graph function to use?
You can use errorbar function to make this.

alrededor de 4 años hace | 0

| aceptada

Respondida
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...

alrededor de 4 años hace | 0

| aceptada

Respondida
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];

alrededor de 4 años hace | 0

| aceptada

Respondida
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...

alrededor de 4 años hace | 0

Respondida
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 ...

alrededor de 4 años hace | 0

Respondida
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_...

alrededor de 4 años hace | 0

Respondida
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) ...

alrededor de 4 años hace | 0

| aceptada

Respondida
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...

alrededor de 4 años hace | 1

| aceptada

Respondida
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 ...

alrededor de 4 años hace | 1

| aceptada

Respondida
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.

alrededor de 4 años hace | 0

| aceptada

Cargar más