Answered
Display long strings that include newlines in a table
I don't think there's a way. But you could write to an Excel file (e.g., with writetable) where multiline cells are possible. >...

2 years ago | 0

Answered
Dot indexing is not supported for variables of this type.
Have you actually looked at the contents of device? Is it possible that MAI.GetDeviceByIndex(0) returns empty [] because someth...

2 years ago | 0

Answered
understand in which function the field is filled
If ReportAggreg is created literally with an assignment statement of the form someStruct.ReportAggreg = something it should be...

2 years ago | 0

| accepted

Answered
Can I define the relationship between input and output using the raw experimental data in MATLAB. somthing like this .
Yes, you have a choice of lsqcurvefit, fit, and various others.

2 years ago | 0

Answered
How can I get X value by transforming the griddedInterpolant function?
Why not just, F=scatteredInterpolant(Y(:),Z(:),X(:));

2 years ago | 0

| accepted

Answered
Is there any layer defined in matlab for sine activation function? Or else can we define the layer using functionLayer?
If it will not have any learnable parameters, you can use a functionLayer.

2 years ago | 1

| accepted

Answered
How can I use the returned sort index from the sort() function on a multidimensional array?
The easier way would be to use the attached modification of sort() which will simply return the output indices as lienar indices...

2 years ago | 1

Answered
Loop around a toolbox
This runs: for N = 40:42 %<---shortened Daten=rand(N);%<-----added v = [1]; m = zeros(1,N); for n ...

2 years ago | 0

| accepted

Answered
app class properties check
I imagine that you could define your own property validation function, https://www.mathworks.com/help/matlab/matlab_oop/propert...

2 years ago | 1

Answered
Using Linear indicies to create new image
stats=regionprops(BW,'PixelIdxList'); Z0=false(size(BW)); for i=1:numel(stats) Z=Z0; Z(stats(i).PixelIdxLi...

2 years ago | 0

Answered
How to extract all values along the third axis of a 3d-array using a logical 2d-array?
a = rand(10,10); a(5,5) = 10; b = a+rand(1,1,1000); br=reshape(b,[],size(b,3)); c = br(a == 10,:)

2 years ago | 2

Answered
How can I graph these two equations in matlab?
One way, f =@(y) (y-4).*(2*y-y.^2); fplot(f); xlabel y; ylabel f(y) and similarly with the other function.

2 years ago | 1

Answered
Singular value decomposition, Cant get the final results
Since you are now on a more powerful computer with more RAM, perhaps you should also try doing the SVD without tall arrays. Re...

2 years ago | 0

| accepted

Answered
Common legend for each row of tiled layout
I could do nested tiled layouts, but that seems very cumbersome, especially when I have many more rows. Why? %% Make Layout Sk...

2 years ago | 1

| accepted

Answered
is there a way to perform this task w/o using loops?
There are ways to do it without loops, but doing it without loops will be of no benefit to you. It will take more lines of code,...

2 years ago | 1

Answered
Draw angled ellipses around clusters on PCA plot
Using polyshapes: ellipse=rotate( scale(nsidedpoly(1000),[2,1]) ,30); plot(ellipse)

2 years ago | 0

Answered
Draw angled ellipses around clusters on PCA plot
See also elliipticalFit from the FEX downloadable, https://www.mathworks.com/matlabcentral/fileexchange/87584-object-oriented-t...

2 years ago | 0

Answered
How can I stabilize the matrix left division (i.e. "\")?
You cannot. You must regularize the problem somehow and make the matrix non-singular.

2 years ago | 0

Answered
Solving a quadratic optimization problem subjected to linear constraints
You can use lsqnonneg, xi=[0, 0.25, 0.5, 1, 1.2, 1.8, 2]'; fi= [2, 0.8, 0.5, 0.1, 1, 0.5, 1]'; phi=@(r) max(0, 1 - r).^4....

2 years ago | 0

| accepted

Answered
Simple Indexing problem when creating a matrix
n=5; A=[0 60 120 180 240 300 360]; A=A+360*(0:n-1)'

2 years ago | 0

| accepted

Answered
how to project a contour along a surface plane?
This looks applicable: https://www.mathworks.com/matlabcentral/fileexchange/8589-contourz?s_tid=srchtitle

2 years ago | 0

Answered
Find function misbehaves when Indexing into array
Perhaps this is what you meant, LogicArray = x < Tolerance; LogicArray(1:4)=false; FindIndex = find(LogicArray,1,'first')...

2 years ago | 1

| accepted

Answered
fmincon optimization: is the first order optimality very sensititve to changes in the step tolerance?
So given the results I show, can we qualititatively say that the objective is likely to be very flat at the solution? Or somethi...

2 years ago | 0

| accepted

Answered
optimize vector by fminimax
if with my first input i have this vector (output) (1 2 5 6 9 5) and with next input i have this one (1 2 9 6 9 1) as you can ...

2 years ago | 0

| accepted

Answered
How to get the distance references of geometry and curvature of the object?
I was able to do it with the help of some FEX downloads: https://www.mathworks.com/matlabcentral/fileexchange/90762-further-too...

2 years ago | 0

Answered
Indexing matrix with multiplication
No. You can easily see they are not the same by comparing them yourself: T=randi(30,5) mask=T>20; T(mask) T.*mask

2 years ago | 1

Answered
Access MinFeretCoordinates data in regionprop table
For example, stats{1,'MinFeretCoordinates'} stats{2,'MinFeretCoordinates'} stats{3,'MinFeretCoordinates'}

2 years ago | 0

| accepted

Answered
Complex Image Processing with closed contour
So, you have an image like this, load Image figure; imshow(Image) and you just want to keep the central part? Then threshol...

2 years ago | 0

| accepted

Answered
Inserting zeros into another array at values in the second array
A = [8 2 3 5 5 6 7 8 9]; B = [1 3 2 3]; F=nan(1,numel(A)+numel(B)); F(cumsum(B)+(1:numel(B)) )=0; F(isnan(F))=A

2 years ago | 1

Answered
How to Remove Tail from Segmented Circle
This uses bwlalphaclose from this FEX download https://www.mathworks.com/matlabcentral/fileexchange/90762-further-tools-for-ana...

2 years ago | 1

| accepted

Load more