
Matt J
Professional Interests: medical image processing, optimization algorithms PLEASE NOTE: I do not read email sent through my author page. Please post questions about FEX submissions in their respective Comments section.
Statistics
RANK
6
of 275.619
REPUTAZIONE
27.308
CONTRIBUTI
230 Domande
10.497 Risposte
ACCETTAZIONE DELLE RISPOSTE
75.22%
VOTI RICEVUTI
3.571
RANK
227 of 18.566
REPUTAZIONE
5.910
VALUTAZIONE MEDIA
4.90
CONTRIBUTI
35 File
DOWNLOAD
455
ALL TIME DOWNLOAD
49519
RANK
of 125.406
CONTRIBUTI
0 Problemi
0 Soluzioni
PUNTEGGIO
0
NUMERO DI BADGE
0
CONTRIBUTI
0 Post
CONTRIBUTI
0 Pubblico Canali
VALUTAZIONE MEDIA
CONTRIBUTI
3 Punti principali
NUMERO MEDIO DI LIKE
2
Content Feed
Populating off-diagonal blocks of diagonal matrix and making it sparse
Perhaps as below. Note that the first 3 lines are just fixed precomputations. n=2; p=3; T=5; Matrix=kron(eye(n),eye(T)); [L,...
circa 3 ore fa | 0
| accettato
Hi , I get the following error using intlinprog : The number of columns in Aeq must be the same as the length of f. anyway to overcome it?Error using intlinprog (line 135)
You have 3 unknown variables, but your Aeq matrix has only 1 column. That makes it impossible for intlinprog to form the matrix-...
circa 4 ore fa | 0
Does Matlab provide any tools to understand the contents in an image and describe it using words?
You could start with this example, https://www.mathworks.com/help/deeplearning/ug/image-captioning-using-attention.html#ImageCa...
circa 4 ore fa | 0
Anonymous function only returns single answer
Use the elementwise division operator ./ x=pi:pi/100:2*pi; y=x.^2; z = @(a,b) ((sin(a)+cos(b))./((a.^2)+(b.^2))); b = z(x,y)...
circa 4 ore fa | 1
How to implement the Gaussian radial basis function in MATLAB ?
If you have the Statistics Toolbox, you can avoid a loop by using pdist2 Lt = 10; p = rand(Lt,4); sigma = 1.0; K=exp(-pdis...
circa 17 ore fa | 0
How do I plot a prod function in MATLAB?
fun=@(t) abs(t-5)<=1/2; fplot(fun,[1,10]); axis padded
circa 19 ore fa | 0
| accettato
Concise way to remove columns of a matrix with at least 2 repeating values in separate rows
One possibilty, A =[ 2 8 1 8 2 3 1 7 5 4 5 4 2 6 3 1 ...
circa 19 ore fa | 0
| accettato
How to evaluate individual once at a time when using GA with parallel processing?
The objective function will always evaluate one point at a time unless you are using the UseVectorized option. As for your scre...
1 giorno fa | 0
| accettato
lsqnonlin initial conditions (transcendental equation)
You can split the model function into real and imaginary parts, func=@(a) [real(func(a)); imag(func(a))]; [k,resnorm,residua...
1 giorno fa | 0
Why does fmincon using the sqp algorithm need a full matrix to specify linear constraints?
Probably because the SQP algorithm must extract subsets of rows of the constraint matrice quite often. This can be much faster f...
1 giorno fa | 1
| accettato
How can I ort elements of a column in a matrix using elements of another column in another matrix
subset=[1,3] %The vector of IDs with positive y-intercept idx=ismember(Matrix1(:,3),subset); Matrix1=Matrix1(idx,:);
1 giorno fa | 0
| accettato
solve non-linear equation
You can solve for x=e^(-z) using roots. Then use z=-log(x). Example: z=2.4; pho=2; L=2; G = exp(-z) + pho*exp(L-2*z); ...
1 giorno fa | 0
How to build a function fun that takes as input the matrix A and as output provides the matrix B which is produced out of A in the following ways.
You can use this FEX download, https://www.mathworks.com/matlabcentral/fileexchange/115340-block-transposition-permutation-and-...
1 giorno fa | 0
How to get gradient data from non-linear 2D plot
Yes, you can use the diff or gradient command.
1 giorno fa | 0
When plot graph vertex labels cut the edges, how to avoid it?
You can remove the node labels as follows: h=plot(graph(bucky)); h.NodeLabel={};
1 giorno fa | 0
How to get pixel value inside a circle
drawcircle() returns an object with a createMask method. Using the mask produced by createMask(), you can do, mean(yourImage(ma...
1 giorno fa | 0
| accettato
Find the centre and the radius of the circle or ellipse
You can download this, https://www.mathworks.com/matlabcentral/fileexchange/87584-object-oriented-tools-for-fitting-conics-and-...
1 giorno fa | 0
| accettato
Data show one value why all values not displying?
That's not unthinkable, if the points in the plot were generated one at a time and discarded: for fid=linspace(0.01,0.1185,10) ...
1 giorno fa | 1
plot sfit shows an offset between data and the fit but the residuals are very small.
One thing that seems to be creating problems is that your model function returns different results depending on whether the (x,...
1 giorno fa | 1
| accettato
How to append a large number of cell arrays vertically?
s=dir('stations_*.mat'); CellList=cellfun(@(z) load(z).stations1,{s.name},'uni',0); result=vertcat(CellList{:})
2 giorni fa | 1
Removing a part of curve
I'll demonstrate a technique using a simpler example, since only you know the mathematical meaning of the region to be excluded ...
2 giorni fa | 0
Get the last rows of tables inside a cell array
There is no way to avoid the slow speed of a loop when dealing with cell arrays. Cell arrays are not meant to be fast. However, ...
3 giorni fa | 0
Why do I get 'Array indices must be positive or logical values' in symsum function?
The error is because you appear to be indexing P with a non-integer. Did you mean to write, sin(n*P*(1-y/h)) ?
3 giorni fa | 0
Calculate the conrast by the difference between the highest and lowest intensity value
You could use medfilt2 or medfilt3 to get rid of the outliers. You could then use discretize to bin the data into bins of width ...
3 giorni fa | 0
| accettato
Confidence and prediction bands using nlsqcurvefit
Covariance methods are not valid when you have parameter bound constraints. Since it's not a time-consuming fit, I would just us...
3 giorni fa | 0
| accettato
How to solve optimization problem using sequential minimal optimization (SMO) in MATLAB
There is this offering on the File Exchange, which I have never used, https://www.mathworks.com/matlabcentral/fileexchange/6310...
3 giorni fa | 0
| accettato
truncate at 10^-3
A few options: x=round(pi,3) y=floor(pi*1000)/1000 sprintf('%.3f',x) sprintf('%.3f',y)
4 giorni fa | 0
Concatenate content of cells containing vectors
Simpler, yes. Faster, no. A{1,1} = 1 ; A{2,1} = 2 ; A{3,1} = [3 4 5 ]; B{1,1} = 10 ; B{2,1} = [ ]; ...
4 giorni fa | 1
| accettato
Did mldivide Implementation Change in R2022b?
The condition number of clsys.A is very poor, so you should not expect any consistency in the result among different implementat...
4 giorni fa | 2
Gradient function not matching array dimensions
Alternatively, why not use the gradient command? psi =rand(51); [gradx,grady]=gradient(psi); whos psi gradx grady
5 giorni fa | 0
| accettato