Réponse apportée
How to quantify shape similarity between two vectors.
Perhaps you could use correlation-based similarity? x1 = 0:0.1:10; Y1 = gaussmf(x1,[0.8 5 ]); Y2 = gaussmf(x1,[0.8 3 ]); Y3 ...

presque 2 ans il y a | 0

Réponse apportée
I need to apply constrain using least square non negative function in Matlab
Use lsqlin instead.

presque 2 ans il y a | 0

Réponse apportée
Slice of a 3D plot and projection of that function in a plane.
[x,y,yhalf]=deal(linspace(-2,2,100)); yhalf(y<0)=nan; Z = exp(-( x.^2 + y.^2')); figure, mesh(x,yhalf,Z,'FaceAlpha',1); ...

presque 2 ans il y a | 0

| A accepté

Réponse apportée
Why imregtform registration fails on similar images
Perhaps as follows, load Images g=@(z) entropyfilt(z); f=@(z) z.*(z>=1.5); im=f(g(im)); ref=f(g(ref)); ov=imref2d(size(i...

presque 2 ans il y a | 0

Réponse apportée
How to numerically evaluate this singular integral in integral2?
As demonstrated in the comment above, the integral is theoretically non-convergent unless c>=norm([10/a,10/b]). Here is a furthe...

presque 2 ans il y a | 1

Réponse apportée
Simply trying to find a value in the same row as my known value but in a different column.
Everything I have tried also gives me an answer of "0×1 empty double column vector," but without any value. You haven't shown...

presque 2 ans il y a | 0

Réponse apportée
Poor performance of linprog in practice
There are some papers in the computational literature that show that if you recast a DP problem as LP problem you can achieve si...

presque 2 ans il y a | 0

| A accepté

Réponse apportée
Can we specify an "outward" direction to normal obtained from pcfitplane approach?
I doubt you can, but it shouldn't matter. If the normal is pointing the wrong way, just post-process the fit by flipping its dir...

presque 2 ans il y a | 0

Réponse apportée
Out of memory when solving large system of non-linear equations (fsolve, fminunc, ...)
I have more then 50000 variables. And ideally, I still want to scale up to number of variables. This means your Jacobian matrix...

presque 2 ans il y a | 1

Réponse apportée
Can I 'initialize' a handle object in such a way that isvalid(object) would return false?
One way: classdef ExampleClass < handle properties MyHandle end methods function...

presque 2 ans il y a | 2

| A accepté

Réponse apportée
How can I have the middle data set during the fitting process by lsqcurvefit?
Use the OutputFcn and/or the PlotFcn options, https://www.mathworks.com/help/optim/ug/lsqcurvefit.html#buuhcjo-options

presque 2 ans il y a | 0

Réponse apportée
Why does the Stereo Camera Calibrator App provide different results on different MATLAB versions?
LIkely because the patterns are too similar across images, like the error message says. This would lead to ill-conditioning of t...

presque 2 ans il y a | 0

Réponse apportée
Error using nlinfit (Check FunVals)
For one thing, y = interp1(t,y(:,7),x1,'spline','extrap'); % cumulative reported cases For another, some sort of bounds or con...

presque 2 ans il y a | 0

Réponse apportée
Why is the jacobian function so slow for calculating jacobian matrix with many variables?
Use matlabFunction to compute the jacobian from symbolic to numerical form, so that when it comes time to use it repeatedly, it ...

presque 2 ans il y a | 0

Réponse apportée
Different data processing depending on the spatial region of the points
Sure. Use inpolygon to detect in which region a given (x,y) point lies and compute the summation of mx variables accordingly.

presque 2 ans il y a | 0

Réponse apportée
Binning matrix data (negative and positive decimals): mean of each 100 rows and create a new matrix
Using sepblockfun() from, https://www.mathworks.com/matlabcentral/fileexchange/48089-separable-block-wise-operations B=sepblo...

presque 2 ans il y a | 1

Réponse apportée
Deep learning: predict and forward give very inconsistent result with batch normalisation
To get agreement, you need to allow the trained mean and variance to converge: numLayer = 9; numNeurons = 80; layers = featur...

presque 2 ans il y a | 0

Réponse apportée
Cannot figure out how to fit a complicated custom equation.
I recommend using fminspleas, downloadable from, https://www.mathworks.com/matlabcentral/fileexchange/10093-fminspleas for th...

presque 2 ans il y a | 0

Réponse apportée
How does dlgradient handle two output layers?
Along the lines of what @Catalytic said, it is hard to envision how you are trying to use dlgradient without seeing that code. A...

presque 2 ans il y a | 1

| A accepté

Réponse apportée
how to extract the learned features from a dlnetwork
featureSet = forward(net,trainData,'Outputs',net.Layers(181).Name);

presque 2 ans il y a | 0

Réponse apportée
Is there a setting to move labels on a plot closer
You can use the axis label text object porperties to move them around, e.g., h=gca; h.XLabel.Position(end)=h.XLabel.Position(e...

presque 2 ans il y a | 0

| A accepté

Question


When did the syntax for linprog change
At one point, the input syntax for linprog was x=linprog(f,A,b,Aeq,beq,lb,ub,x0,options) but now (R2023b) I see that it has c...

presque 2 ans il y a | 2 réponses | 0

2

réponses

A soumis


Constrained minimum L1-norm solutions of linear equations
Finds least L1-norm solutions to linear equations C*x=d subject to linear and/or integer constraints.

presque 2 ans il y a | 2 téléchargements |

5.0 / 5

Réponse apportée
The issue of optimization (minimization) of the average relative error between experimental and calculated data
If you download minL1lin from https://www.mathworks.com/matlabcentral/fileexchange/52795-constrained-minimum-l1-norm-solutions-...

presque 2 ans il y a | 0

| A accepté

Réponse apportée
How can I efficiently save and access large arrays generated in nested loops?
I used the following given method to save the data, and it produced an 11 GB file, which seems very large. The memory consumpti...

presque 2 ans il y a | 0

| A accepté

Réponse apportée
Why ILP Solver Switching to Branch-and-Bound?
Assuming you are using intlinprog, it will always uses the branch-and-bound algorithm at some stage of the processing (not sure...

presque 2 ans il y a | 0

| A accepté

Réponse apportée
How to average across tables in a cell
AvgTb=Tb{1}; AvgTb{1}{:,:}=(Tb{1}{:,:}+Tb{2}{:,:}+Tb{3}{:,:})/3;

presque 2 ans il y a | 0

| A accepté

Réponse apportée
Detecting circles in an image to measure inner and outer diameter
Because of the angle of the camera, circular shapes like the ones you are looking for are imaged as ellipses. Since imfindcircle...

presque 2 ans il y a | 0

Réponse apportée
Find strings within other strings then pull data from that point
fileContent = fileread('P0300.txt'); prefix="01 3E"; e=" "+digitsPattern(2); pattern = prefix+e+e+e; matches = extractAf...

presque 2 ans il y a | 0

A soumis


Array Concatenation with Implicit Expansion
Versions of cat(), horzcat(), and vertcat() that support implicit expansion

presque 2 ans il y a | 2 téléchargements |

5.0 / 5

Charger plus