Answered
How can the data be accurately clustered?
Maybe clusterdata would be useful. It has lots of different algorithmic options you could try.

5 months ago | 0

Answered
How do I add transparency to a plot in the Live Editor?
I find that this makes the lines dim in the Live Editor, like they appear in your post - plot([0, 1],[0, 1; 1, 0], 'Color', [1 ...

5 months ago | 0

Answered
Unable to find explicit solution in Lagrangian optimization
An analytical solution for 0<rho<1 is - A=[1 0; 0 1; -1 0; 0 -1]*E; [fval,i]=min(A*[p1;p2]); e1=A(i,1); e2=A(i...

5 months ago | 1

| accepted

Answered
error Unrecognized function or variable help me please :(!
signalsCell=load('signals').signals; PlotSignal(signalsCell, 3) function PlotSignal(signalsCell, n) Headings=signals...

5 months ago | 1

Answered
difficulties using fmincon codes
however it still uses @SomnathsFunc2 i would be happy to exclude rather than this cant we direclty add that part in code rather ...

6 months ago | 1

| accepted

Answered
Get equation of the surface from curve fitting
I would like to get a mathematical function that describes the surface of the 3D space, so I can, given a N and phi, get a value...

6 months ago | 0

Answered
Adoption of Name=Value in Function Calls what is best practice?
One situation where you have to stick with the old style anyway is when you want to pre-package your name value pairs in a cell ...

6 months ago | 0

Answered
Create a node in the space between two nodes (A and B) and following the direction normal to a node (N)
A = [-25.5530 -185.3199 -211.6502]; B = [-25.4769 -185.6468 -211.2523]; N = [-25.4602 -185.4676 -211.6694]; C=(...

6 months ago | 0

Answered
how to velocize it (avoid loop is possible)
I don't know if "velocize" (not a word) is supposed to mean "accelerate" or "vectorize". The two are not the same. If you're l...

6 months ago | 1

Answered
How to add cell array as index in plot title
I suspect that the code you've shown us is not the code that produces the error. I suspect you did this instead - figure tlo =...

6 months ago | 0

Answered
Which algorithm does SVD function take?
Comparing results showed that max difference in S and S1 reached 1e-14, but for U and U1 or for V and V1, max difference reached...

6 months ago | 2

Answered
For matrix A you cannot do: A.^2(:)
A=[1 2;3 4]; sum(A(:).^2) vecnorm(A(:))^2 norm(A,'fro')^2

6 months ago | 0

Answered
Identify the maximum values within fixed time intervals of a time series data set
Time=[4 5 6 7 8 9 10 25 26 27 28 29 46 47 48 49 50 58 59 60]; %Time vector, in minutes x=[ 0 5 0 1 3 11 2 0 0 1 8 3 0 0 -5 12 2...

6 months ago | 2

Answered
Create a 4D array from 3D array with 3 columns, and 1D (row only) array with 3 columns
So, could it be that myVar has 4 arrays inside it To me, it doesn't sound like you are talking about a 4D array at all, but ins...

6 months ago | 0

Answered
How to visualize histogram
You can use the histogram command with hold to superimpose them.

7 months ago | 0

Answered
shortestpath between two points on skeleton in binary image
You can use bwdistgeodesic.

7 months ago | 0

Answered
Why does abs cause bad matlabfunction evaluation?
The real problem appears to be that f is not fully simplified, and therefore the Symbolic Toolbox tries to naively apply the Cha...

8 months ago | 2

Answered
How to save .mat files on the disk after each iteration?
Often, you would put all images with the same label in the same folder - Folders={'Label1','Label2','Label3'}; for j=1:nu...

8 months ago | 1

Answered
Curve fitting a function that is dependent on a difference of 2d functions
There appears to be a simple analytical solution - constant=(0.0025)^(-5/3)*(2*Lambda^2*0.1816)/D^(1/3); DTV=(cX+cY)*consta...

9 months ago | 0

Answered
Calling functions that have a variable name
That sounds like a bad idea. You should probably make a single function where (n,k) are one of the arguments - function oneFun...

9 months ago | 3

Answered
Trapezoidal Rule of Convolution with Non-Uniform Intervals
I don't believe there is such a thing as the "Trapezoidal Rule of Convolution". Undoubtedly, you are thinking of the trapezoidal...

10 months ago | 0

| accepted

Answered
cut the object in space (separate a 3D object into two distinct parts) using a plane
The IsoCut command here looks like it will do this - https://www.mathworks.com/matlabcentral/fileexchange/87112-isocut

10 months ago | 0

Answered
How to trace the minimum and maximum lines of the image of the moiré franges?
Something like this might also work - A=load('Image').Image; T=findEdges(A,'top',10); B=findEdges(A,'bottom',10); C=fin...

10 months ago | 1

| accepted

Answered
Changing color in matlab
A = imread('xyz_converted.png'); [R,G,B] = imsplit(A); B=cat(3,G, 0*R,0*B); imshow(B)

10 months ago | 0

Answered
Speed up process of passing each row of large array to external function
This reduces it to one loop, which should work with parfor - x = lambdas; % 1 x 1927 element vector intt=int'; logg=nan...

10 months ago | 0

| accepted

Answered
Using datastore for a matrix
If you're not going to store your data in memory, then the training samples have to be split up into separate .mat files. You co...

11 months ago | 1

| accepted

Answered
fmincon with handle function input
No, the objective function that you give to fmincon can contain anything, but fmincon's algorithms will assume that the input-to...

11 months ago | 2

Answered
Why is it necessary/useful to have a HandleCompatible attribute?
Maybe because in some cases you may want a class to have copy-by-reference semantics but you want its subclasses to have regular...

11 months ago | 0

Answered
How to prove that a destructor must be defined for the Value classes
I think there is an argument to be made for allowing destructors to be defined by value classes, but not for memory management p...

12 months ago | 2

| accepted

Answered
Indexing a struct inside a struct
If Stint is a struct array, as you say, then it should be indexed with parentheses (), not braces {}, dataA.Stint(jj) Convers...

12 months ago | 0

Load more