Answered
How to open the file of type Mn.
This should be helpful. MATLAB File Association & Shortcut Fix

1 year ago | 0

Answered
How to find a constrained sum within a region
You can do this in a binary search manner, instead of doing sum() stepwise. Below is pseudo code diameterMin = 0.001; % choo...

1 year ago | 0

Answered
How do you populate a struct with multiple loaded .mat files?
There is a contradiction between your statement and your comment in code. I assume you are asking about " however when I wrap it...

1 year ago | 0

|accepted

Answered
Understanding MatLab's built-in SVM cross-validation on fitcsvm
Maybe kfoldLoss uses a different definition of loss than yours. Your definition is 1-accuracy. //www.tatmou.com/help/...

1 year ago | 0

Answered
Find indicies of k smallest matrix elements
[~, indices] = sort(A(:), 'ascend'); ind = indices(1:k);

1 year ago | 0

|accepted

Answered
Function with two outputs only giving one output
Apparently, the code is right. I assume you are new to matlab. You should use [C K] = FTOCK (degreeF) to receive two out...

1 year ago | 0

Answered
When I run the file I get an error
你应该提供一个可复制的代码片段。我复制your code and run, it turns out "Unrecognized function or variable 'f'." at li...

1 year ago | 0

Answered
Can I add a file path for a document that is not on my desktop using the SPM12 program in MatLab?
You can export the batch, which is a .m file, then you can edit the path programmatically.

1 year ago | 0

Submitted


Align Matrix
Align matrix for better readability

1 year ago | 1 download |

Thumbnail

Question


Conflict between SVM classifier and perfcurve()
I want to do binary classification using SVM and evaluate its performance using ROC by the function perfcurve(). Meanwhile I wan...

2 years ago | 1 answer | 0

1

answer

Answered
Move all figures to a specific monitor?
Dose anyone know how to accomplish this?

2 years ago | 0

Question


Move all figures to a specific monitor?
I have two monitors, I prefer to write code on primary monitor and view figures on secondary monitor. I have managed to make the...

2 years ago | 2 answers | 0

2

answers

Question


Parfor, reference to a cleared variable
I have a script like the pseudo-code below. When I run my script, MATLAB says "Reference to a cleared variable xxx". After remov...

3 years ago | 1 answer | 0

1

answer