Answered
How to solve Ax=b with some all knowns except some x values
A = [48 -24 -24 12]; b = [0 0]; solution = A(:,2:end)\(b-A(:,1))

2 years ago | 0

Answered
implicit conversion doesn't work with some functions
interp1 is not a method of class double, so it does not have to accommodate double's child classes. ismember('interp1',methods(...

2 years ago | 1

| accepted

Answered
fsolve not varying input variable
I can't say definitively whether this is responsible for the specific problem you cite, but you are not being at all careful in ...

2 years ago | 0

Answered
Reducing resolution imagesc by convolution
You could download sepblockfun from the File Exchange, https://www.mathworks.com/matlabcentral/fileexchange/48089-separable-blo...

2 years ago | 1

| accepted

Answered
Unrecognized function or variable 'importNetworkFromTensorFlow'.
You haven't filled in the form with your Matlab release, but I'm guessing you have a version that predates that command.

2 years ago | 0

Answered
creating nodes on an axis normal to a plane
You can generate equidistant points along any 3D ray as follows: center = [-24.3053980118084 -192.105601596377 -203.31723850625...

2 years ago | 2

Answered
Using function handle in fittype function
No, there isn't. fit and fittype need to know the number and names of the unknown coefficients, and the only way they can do tha...

2 years ago | 0

| accepted

Answered
How to get the ODD with fanbeam function
I suspect ODD is always zero. It should be easy to test. Use the known width of the phantom and the known FanSensorSpacing to se...

2 years ago | 0

Answered
how parfor distributes resources to each iteration if the number of cores is larger than the number of iterations
You have to consider the number of workers, M, not just the number of cores, C. If M is the number of parpool workers and N is ...

2 years ago | 1

Answered
Fitting an ellipse based 3D PointCloud on 3D space
Using this fitting toolbox (you must download it), https://www.mathworks.com/matlabcentral/fileexchange/87584-object-oriented-t...

2 years ago | 2

| accepted

Answered
Find coordinates inside a matrix with specific conditions
Using this FEX download, https://www.mathworks.com/matlabcentral/fileexchange/87584-object-oriented-tools-for-fitting-conics-an...

2 years ago | 0

| accepted

Answered
Improving the interpolation of nodes arranged in a circle on a plane
You could fit a circle to the given points and then resample it using this FEX download, https://www.mathworks.com/matlabcentra...

2 years ago | 0

| accepted

Answered
Fast calculate the inverse of a lower triangular matrix
Do you really need the inverse of the matrix or do you need to solve a system of equations whose coefficient matrix is that lowe...

2 years ago | 0

Answered
sum results depending on array orientation
Now the inconsistent results is considered by TMW as a bug Here is what they said, After some investigation, I found out that ...

2 years ago | 1

Answered
matlab strange result for mean of single vs double
I reported the alternative example below to Tech Support and their reply was that they do in fact consider it a bug. I'm not sur...

2 years ago | 1

Answered
Get the last 4 digit number out of a string?
With more recent Matlab, str = "SomeName_1234_ABC_5678_1"; s=extract(str,"_"+digitsPattern(4)+"_"); last=erase(s{end},"_"...

2 years ago | 2

| accepted

Answered
How to subtract two column vectors properly?
The relative error is the only thing you can expect to be small, which it is: DEsol = norm(unew-u)/norm(u) %relative error I...

2 years ago | 0

Answered
How to have legend in multiple rows and center aligned?
The second output of legendflex, https://www.mathworks.com/matlabcentral/fileexchange/31092-legendflex-m-a-more-flexible-custo...

2 years ago | 0

Answered
changing expression to function and then optimize the function
Do not use syms or matlabFunction for a situation like this. Just write a plain function to compute the expression, function ex...

2 years ago | 0

Answered
Create a 4D array from 3D array with 3 columns, and 1D (row only) array with 3 columns
How do I create a 4D variable that has data from arr1 and arr2, and looks like what I wrote in the beginning? My guess is its si...

2 years ago | 0

| accepted

Answered
How to plot a polytope in MATLAB using a given matrix ?
You can obtain the linear equalities for the polytope using vert2lcon, https://www.mathworks.com/matlabcentral/fileexchange/308...

2 years ago | 0

Answered
Does DeepNetworkDesigner support Transformer Layers?
If the transformer layer is a custom layer that you have created for yourself, you would import it to deepNetworkDesigner from t...

2 years ago | 0

Answered
Probolem when using fmincon :The solver starts from a feasible point but converges to an infeasible point
You seem to be under the impression that if the initial point x0 is feasible, then all future iterations will be feasible. There...

2 years ago | 1

Answered
An equivalent function to "imregionalmax" with higher speed
If you can count on the "peaks" to be a single pixel in size, you can just do, ispeak=A>=imdilate(A,ones(3)); %A is the image

2 years ago | 1

| accepted

Answered
Connecting points to polygon
Your code can't be run because nearestIndices is not provided. Regardless, I would recommend using polyshape to represent and ...

2 years ago | 0

| accepted

Answered
Determining the coordinates of a node between two known nodes and knowing the distances between the known nodes
Assuming the nodes form a straight line, C = A + (B-A)*d_AC/(d_AC+dCB)

2 years ago | 0

| accepted

Answered
How to use "imregionalmax" without using for loop
Perhaps as follows, AF_Nuni = permute(AF_Nuni,[2,3,1]); %Avoid this permutation by forming AF_Nuni ...

2 years ago | 1

Answered
How can I speed up this function? #vectorize
I doubt a vectorized solution would be faster than the loop, but here is one way to vectorize it. [K,J,I]=ndgrid(1:n4,1:n1,1:n3...

2 years ago | 1

| accepted

Answered
MATLAB parfor is slower than for -- any help to speed up of my loop cacluations within KDL function?
M=11 is a rather small number of iterations. If this is a realistic value, there may not be enough iterative work to make the ov...

2 years ago | 0

Answered
How to plot objective function with optimal solution
Perhaps as follows? A=[1 3;-1 2]; Aeq=[2 1]; beq=4; b=[5;-1]; f=[-1 -5]; lb=[0;0]; [x,Z]=linprog(f,A,b,Aeq,beq,lb); fpri...

2 years ago | 1

Load more