답변 있음
how to draw classification response of machine learning model ? (Ex. Logistic Regression Response)
You can plot predicted probabilities from a logisitc regression model: y = randi([0, 1], 1000, 1); x = randn(1000, 1); mdl ...

3년 초과 전 | 0

답변 있음
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년 초과 전 | 0

답변 있음
Ignore NaN value when iterating
arrayfun(@(x)numel(A(x, ~isnan(A(x, :)))), 1:size(A,1)) 5 1 3

거의 4년 전 | 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

거의 4년 전 | 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...

대략 4년 전 | 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

대략 4년 전 | 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년 전 | 0

| 수락됨

답변 있음
Removing outliers using standard deviation
groupfilter does the trick cleanTable = groupfilter(yourTable, 'Hour', @(x)~isoutlier(x, 'mean'), 'Price');

대략 4년 전 | 0

| 수락됨

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

대략 4년 전 | 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년 전 | 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년 전 | 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년 전 | 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년 전 | 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년 전 | 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년 전 | 0

| 수락됨

답변 있음
extract column index of a particular values in the matrix
B = x1(x1 <= 550 & x1 >= 500);

대략 4년 전 | 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년 전 | 1

답변 있음
Summing multiple cell entries
Fmat = sum([F{:}], 2);

대략 4년 전 | 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년 전 | 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년 전 | 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년 전 | 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년 전 | 1

| 수락됨

답변 있음
Reading a matrix from a .txt file
Try this myMat = readmatrix('myfile.txt', 'delimiter', ' ');

대략 4년 전 | 1

| 수락됨

답변 있음
Reversing the order of EVEN rows in an array
d(2:2:end, :) = fliplr(d(2:2:end, :));

대략 4년 전 | 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년 전 | 0

| 수락됨

답변 있음
Table Mean and Standard Deviation
try this head(x) z1 z2 z3 z4 __ __ __ _______ 7 2 4 0.88646 4 1 ...

대략 4년 전 | 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년 전 | 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년 전 | 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년 전 | 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년 전 | 0

| 수락됨

더 보기