Réponse apportée
minimum output matrix from data
A=[ 0 2.8284 5.6569; 2.8284 0 2.8284; 5.6569 2.8284 0; 1.4142 3.162...

environ 5 ans il y a | 0

| A accepté

Réponse apportée
how to select multiple rows from a large matrix and leave 1 row every time
A = rand(20, 100); keepRowsIdx = setdiff(1:size(A, 1), 4:4:size(A, 1)); Columns 1 through 10 1 2 3 5 ...

environ 5 ans il y a | 0

| A accepté

Réponse apportée
You must pass X as a floating-point matrix.
Your TestSet must have the same structure as your Training set. You can try this result = predict(SVMmodel, Labels(:, 1:9));

environ 5 ans il y a | 0

| A accepté

Réponse apportée
How to create a new parameter in one table based on multiple observations in a second table?
Let's call you first able tabc and the latter tabd. What you bascially need is to first select patients with true events, and th...

environ 5 ans il y a | 1

| A accepté

Réponse apportée
Replace some values of a vector with values from another vector of the same size
You've missed the fact that k is of logical class: A = [0 0 -3 -8 -10 0 0] B = [-12 -12 -4 -4 -4 -12 -12] k = (A < B) C = A ...

environ 5 ans il y a | 0

| A accepté

Réponse apportée
Problems with creating a dynamic struct with num2str
First of all you cannot choose a digit as filed name due to the same reason you cannot choose it as a variable name. for i = 1:...

environ 5 ans il y a | 1

| A accepté

Réponse apportée
Change significance value in ttest2
I found a question asked here saying that trying ranksum should give the same p value as ttest2 ... No, it doesn't say that. ...

environ 5 ans il y a | 0

Réponse apportée
Summation of specific range of matrix
n = size(Q_all, 1)/56; Q_aus = (0); for i = 1:44 Q_aus(i, 1) = sum(sum(Q_all(56*i-55:56*i,:),2)); end

environ 5 ans il y a | 0

| A accepté

Réponse apportée
How to create two independent Normal distribution ?
You basically can generate multiple independent normal random variables form a multivariate normal dist. You just need to define...

environ 5 ans il y a | 1

| A accepté

Réponse apportée
Comparing data in a matrix/table
One way would be to use groupsummary: tab = a1 a2 a3 a4 ________ ________ __ __ ...

environ 5 ans il y a | 1

Réponse apportée
Rename 10000 Text files
files = {'tab1.txt', 'tab2.txt'}; target = replace(files, 'tab', ''); cellfun(@(x, y)movefile(x, y), files, target)

environ 5 ans il y a | 0

Réponse apportée
help with regexp on txt file
str = '16/12/2020 18:30:59.443 Ico 3 Vco 1e7 Ico -3.2e+8 Vco 1.12e-7 Ico -3200 Vco 2.345e14'; regexp(str, '(?<=(Vco|Ico)...

environ 5 ans il y a | 1

| A accepté

Réponse apportée
Changing color of a certain cell in a matrix after breaking a for-loop
You could overlay red rectangles on those cells passing the predefined cutoff (if you wanna stick with the summer colormap). ...

environ 5 ans il y a | 0

Réponse apportée
Writing Matlab Table to File
First of all, you are using fprintf incorrectly, and thankfully all MATLAB errors are quite intuitive. This one tells you, you'v...

environ 5 ans il y a | 0

Réponse apportée
Why I get 1×0 empty double row vector?
xq1 (and therefore X1) simply may don't contain min(oh1) since you are discretizing [0, max(oh1)]. What you can do is to find th...

environ 5 ans il y a | 0

| A accepté

Réponse apportée
EMBL RESTful API post request error
You are almost there, except that MATLAB doesn't have a dictionary data type as Python3 has, so you should construct a struct in...

environ 5 ans il y a | 2

| A accepté

Réponse apportée
Error using plot Vectors must be the same length.
The error is quite clear, 0:200 size doesn't match that of K. numel(0:200) is 201 while numel(K) is 199. It's better to replace ...

environ 5 ans il y a | 0

| A accepté

Réponse apportée
Move multiple rows without swapping
H = randi([0 1], 6, 10) H = 0 1 0 1 1 0 0 0 1 0 1 1 1 0 1 ...

environ 5 ans il y a | 0

| A accepté

Réponse apportée
How to get the mean of a graph ?
If you have the figure file (*.fig) the easiest way is just to open it and from Tools menu select Data statistics.

environ 5 ans il y a | 0

Réponse apportée
take a part from name
If the structure of your string always conforms to the above leading/trailing underlines, you can use regexp: str = 'CC5_ts1_CC...

environ 5 ans il y a | 0

| A accepté

Réponse apportée
Fancy Correlation Plots in MATLAB
Maybe something like this can work for you (after more polishing) % sample correlation matrix r = normalize(randn(10, 10), 'ra...

environ 5 ans il y a | 1

| A accepté

Réponse apportée
Scatter with different colors based on id column
What abou this? scatter(positionX, positionY, sz, ID, 'filled') % example scatter(rand(10, 1), rand(10, 1), 200, randi(5, 1...

environ 5 ans il y a | 0

| A accepté

Réponse apportée
How to correctly set up a particular Paired ANOVA test?
You can use ranova, but as you've realized it does not do multiple comparisons for you. You can do the post-hoc test with pairwi...

environ 5 ans il y a | 0

Réponse apportée
Program should continue running the remaining script
return is quite intuitive and it does what it's suppoed to do: Returns control to invoking script or function. If you wanna cont...

environ 5 ans il y a | 2

| A accepté

Réponse apportée
how to open multiple .txt files?
If all the files have the same structure/data format, you can use datastore to merge them: fileNames = {'t1.txt', 't2.txt', 't3...

environ 5 ans il y a | 0

| A accepté

Réponse apportée
Compare two tables arrays of different sizes
% create two tables [t1, t2] = deal(table("0" + (1:5)', "blah" + (1:5)',... repmat(1:3, 5, 1), 'VariableNames', {'v1', 'v2...

environ 5 ans il y a | 0

Réponse apportée
Matlab plugin and Rstudio packages
There are some equivalent R functions in MATLAB (e.g. here). But there is no tool that can automatically and perfectly convert a...

environ 5 ans il y a | 0

| A accepté

Réponse apportée
How could I change the axis for a boxplot that is automatically produced from ANOVA test?
You can set XTickLabel property of the generated boxplot. mydata = randn(20, 3); anova1(mydata); set(gca, 'XTickLabel', {'A',...

environ 5 ans il y a | 1

| A accepté

Réponse apportée
dot product between two different size of matrix
X = sum(bsxfun(@times, A, B), 2);

environ 5 ans il y a | 2

| A accepté

Réponse apportée
Calculate confidence interval of data set
I'm not sure if you want to calculate CI or something like reference range. Regardless, as you can see on quantile help page, it...

environ 5 ans il y a | 0

Charger plus