已回答
How to allow for multiline input for inputdlg?
Have you tried new line? num_lines = 1; cues = {'lake', 'river', 'water', 'ocean', 'forest'}; index1 = randi([1,5]); answer ...

3 years 前 | 0

已回答
Ignore NaN value when iterating
arrayfun(@(x)numel(A(x, ~isnan(A(x, :)))), 1:size(A,1)) 5 1 3

3 years 前 | 0

| 已接受

已回答
find probability of chi2 test
Based on what you explained it seems you already have the X2 stat. p = 1 - chi2cdf(x, nu) % where x is chi2 stat and nu is df

3 years 前 | 0

| 已接受

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

3 years 前 | 1

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

3 years 前 | 1

| 已接受

已回答
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(:,:...

4 years 前 | 0

| 已接受

已回答
Removing outliers using standard deviation
groupfilter does the trick cleanTable = groupfilter(yourTable, 'Hour', @(x)~isoutlier(x, 'mean'), 'Price');

4 years 前 | 0

| 已接受

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

4 years 前 | 0

| 已接受

已回答
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...

4 years 前 | 0

已回答
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...

4 years 前 | 1

已回答
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

4 years 前 | 0

| 已接受

已回答
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('...

4 years 前 | 0

| 已接受

已回答
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 ...

4 years 前 | 0

已回答
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...

4 years 前 | 0

| 已接受

已回答
extract column index of a particular values in the matrix
B = x1(x1 <= 550 & x1 >= 500);

4 years 前 | 0

| 已接受

已回答
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

4 years 前 | 1

已回答
Summing multiple cell entries
Fmat = sum([F{:}], 2);

4 years 前 | 0

| 已接受

已回答
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...

4 years 前 | 0

已回答
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"

4 years 前 | 0

已回答
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(...

4 years 前 | 0

已回答
Making a 1D array/vector from a table
X = cell2mat(X_cell); % X_cell: your original cell myVec = X(X(:, 3) == 0, 1);

4 years 前 | 1

| 已接受

已回答
Reading a matrix from a .txt file
Try this myMat = readmatrix('myfile.txt', 'delimiter', ' ');

4 years 前 | 1

| 已接受

已回答
Reversing the order of EVEN rows in an array
d(2:2:end, :) = fliplr(d(2:2:end, :));

4 years 前 | 0

| 已接受

已回答
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(...

4 years 前 | 0

| 已接受

已回答
Table Mean and Standard Deviation
try this head(x) z1 z2 z3 z4 __ __ __ _______ 7 2 4 0.88646 4 1 ...

4 years 前 | 0

已回答
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...

4 years 前 | 1

| 已接受

已回答
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}...

4 years 前 | 1

| 已接受

已回答
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'...

4 years 前 | 0

| 已接受

已回答
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...

4 years 前 | 0

| 已接受

已回答
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...

4 years 前 | 0

| 已接受

加载更多