A répondu
Ask for Data Extraction
t = readtable('text.txt'); t.Properties.VariableNames = "col" + (1:size(t, 2)); % set col names 12×3 table col1 col...

environ 3 ans il y a | 1

A répondu
How to change color of imported geometry from .mat file?
h = findobj(gca,'Type','Patch'); h.FaceColor = 'b'; % set it to blue or whatever

environ 3 ans il y a | 1

| A accepté

A répondu
Matrix Multiplication & Splitting
Given your input criteria, you can simply reshape C: sz = size(C, 2); C = reshape(C, 3, 3, sz/3); D = arrayfun(@(i)A*B*C(:,:...

environ 3 ans il y a | 0

| A accepté

A répondu
Removing outliers using standard deviation
groupfilter does the trick cleanTable = groupfilter(yourTable, 'Hour', @(x)~isoutlier(x, 'mean'), 'Price');

environ 3 ans il y a | 0

| A accepté

A répondu
Mean for certain conditions
t = readtable('extracted_table.xlsx'); y = groupsummary(t, {'ID', 'Item', 'Snack'}, @mean, 'Rating'); % mean of Rating for each...

environ 3 ans il y a | 0

| A accepté

A répondu
how to partition data into testing and training
While I don't see any issues with what MATLAB does nor understand your point, you can use something like this: test_idx = rand...

environ 3 ans il y a | 0

A répondu
How to keep only numbers in a cell (.xlsx file)?
x = readcell('test.xlsx') nums = cellfun(@(x)sscanf(x, '%f', 1), x) 1.4420 0.3320 0.3560 0.8530 250.8690...

environ 3 ans il y a | 1

A répondu
fprintf for total sum
doc fprintf An example for a floating point number: X = 2.345674; fprintf('My number is %.2f\n', X) My number is 2.35

environ 3 ans il y a | 0

| A accepté

A répondu
Finding the location of the axis end in normalized coordinates
You just missed the fact that end of axis is starting point + width, try this ax=axes(); p=get(ax,'Position'); annotation('...

environ 3 ans il y a | 0

| A accepté

A répondu
Standarddeviation & mean multiple Matrices
rearrange your matrices into a single 3D matrix. A(:, :, 1) = [1 2; 3 4]; A(:, :, 2) = [5 7; 10 6]; mean(A, 3) 3.0000 ...

environ 3 ans il y a | 0

A répondu
delete positions from a matrix according to a given set of conditions based on matrix elements
One possible solution would be: tab = array2table(data); tab1 = groupsummary(tab, {'data3', 'data4'}) % count VAL3 per each la...

environ 3 ans il y a | 0

| A accepté

A répondu
extract column index of a particular values in the matrix
B = x1(x1 <= 550 & x1 >= 500);

environ 3 ans il y a | 0

| A accepté

A répondu
which x value is making maximum this function.
x = 0:0.1:0.4; y1 = -0.893.*x.^2; [maxY1, maxIdx] = max(abs(y1)); x(maxIdx) % your answer is here

environ 3 ans il y a | 1

A répondu
Summing multiple cell entries
Fmat = sum([F{:}], 2);

environ 3 ans il y a | 0

| A accepté

A répondu
Convert an array of letters into numbers
One way would be Map object: alph = 'A':'Z'; num = 1:numel(alph); % or whatever M = containers.Map(string(alph'), num); term...

environ 3 ans il y a | 0

A répondu
Capitalize only the first letter of a character
str = "dogs are better than cats"; regexprep(str ,'(\<\w{1})', '${upper($1)}') "Dogs Are Better Than Cats"

plus de 3 ans il y a | 0

A répondu
comparing probability with random draw and choose a transition state
You can construct events by a simple element-wise comparison: events = R < P; event2_num = sum(events, 2); event1_num = sum(...

plus de 3 ans il y a | 0

A répondu
Making a 1D array/vector from a table
X = cell2mat(X_cell); % X_cell: your original cell myVec = X(X(:, 3) == 0, 1);

plus de 3 ans il y a | 1

| A accepté

A répondu
Reading a matrix from a .txt file
Try this myMat = readmatrix('myfile.txt', 'delimiter', ' ');

plus de 3 ans il y a | 1

| A accepté

A répondu
Reversing the order of EVEN rows in an array
d(2:2:end, :) = fliplr(d(2:2:end, :));

plus de 3 ans il y a | 0

| A accepté

A répondu
Error When Using Writetable
test2 variable is the one causing this error. If you want that empty column in your output XLSX file: Table_WLS.test2 = repmat(...

plus de 3 ans il y a | 0

| A accepté

A répondu
Table Mean and Standard Deviation
try this head(x) z1 z2 z3 z4 __ __ __ _______ 7 2 4 0.88646 4 1 ...

plus de 3 ans il y a | 0

A répondu
variance explained & pca
pareto only shows the first 10 bars at maximum. You can do it easily with help of cumsum: [~, ~, ~, ~, explained] = pca(rand(10...

plus de 3 ans il y a | 1

| A accepté

A répondu
How can I code the given representations to the labels? (Hats confused me a bit.)
You can find full list of symbols/letter here. But for \hat{x} you can do as: plot(1:10, 1:10, '.-') title('$$\vert$$$$\hat{y}...

plus de 3 ans il y a | 1

| A accepté

A répondu
Extract ¨multiple .xls file from a folder?
If you want to extract the content of all your .xls files within a certain directory at once, you can do it as: % assuming you'...

plus de 3 ans il y a | 0

| A accepté

A répondu
Search string array column for a specific string
Have you tried ismember? You only need column 5, but you fed first argument of strcmp with the whole string array. rowIdx = fin...

plus de 3 ans il y a | 0

| A accepté

A répondu
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...

plus de 3 ans il y a | 0

| A accepté

A répondu
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 ...

plus de 3 ans il y a | 0

| A accepté

A répondu
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));

plus de 3 ans il y a | 0

| A accepté

A répondu
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...

plus de 3 ans il y a | 1

| A accepté

Charger plus