Answered
Using fft and ifft with less frequencies than input points
What I would want to do, is to insert an N, f.e. N=100, but get an array 10001x1. %Grid Nx = 100; L = 10; dx = L/(Nx-1); ...

16 days ago | 0

Question


Why does the Code Analyzer flag this as an error?
Why does the Code Analyzer flag this code as an error? It runs fine: try error("It's bad") catch ME warning('Error...

16 days ago | 2 answers | 0

2

answers

Answered
How to fastly calculate this real number matrix manipulation?
e=(1:A)'; I=reshape(e,1,1,[]) == repmat( e,1,B); Xp=permute(X,[3,2,1]); D=X./(X-Xp); D(I)=1; M = ipermute( prod(D,1) ,[...

17 days ago | 0

Answered
How to solve the error generated while defining custom FFT layer?
Your predict() method is written to expect that the input X will be a cell array. It's not clear why you expect this, but you sh...

18 days ago | 0

| accepted

Answered
How do I edit a loop to be able to store the variables and outputs used in each loop in a way which can be graphed?
D = 0.3 k = 0.0002 Rvalues = 10^4:10^5:10^8; nR=numel(Rvalues); X=nan(1,nR); for i=1:nR R=Rvalues(i); ...

18 days ago | 0

Answered
reshape 4-dimension array
Download this File Exchange package, https://www.mathworks.com/matlabcentral/fileexchange/115340-block-transposition-permutatio...

19 days ago | 0

Answered
Speed up this bottleneck line of code
If you can construct c in transposed form, there are some savings to be had, n = 10000; m = 5000; k = 20; a = rand(n,m);...

20 days ago | 0

| accepted

Answered
nonlinear spline fit with unknown upper bound of interpolation domain
The upper bound is way larger than the fitted parameters at x < 6, causing an extremly large curvature at x > 6 which makes the ...

23 days ago | 0

| accepted

Answered
Differentiating in one direction using FFT2
fft2(u) is equivalent to fft( fft(u,[],1) ,[],2), if that helps at all. Truthfully, it doesn't appear that you need to use fft2...

24 days ago | 0

| accepted

Answered
need to vectorize efficiently calculating only certain values in the matrix multiplication A * B, using a logical array L the size of A * B
Is v much smaller than m or n? If so, one approach might be with an outer product decomposition: L=sparse(L); %if L was not pre...

25 days ago | 1

Answered
shared colorbar for specific plots in tiledlayout
Using nestedLayouts from the File Exchange, https://www.mathworks.com/matlabcentral/fileexchange/161736-grids-of-tiled-chart-la...

26 days ago | 0

Answered
MATLAB Optional Function Arguments
Using the arguments block is more robust, but I'm unable to find a way to make multiple inputs independently optional. The way ...

26 days ago | 2

| accepted

Answered
Set number of rows in output variable using indexing within for loop, add variable to new table
I would like to put the two calculated variable columns directly after the variable column in the original table. And you want ...

27 days ago | 0

Answered
What happens if the termination condition is satisfied before the constraint in matlab's fmincon?
The only time fmincon will stop without satisfying the constraints (within ConstraintTolerance) is if the MaxItertions or MaxFun...

27 days ago | 0

| accepted

Answered
How to remove columns in very large matrices.
Use a sparse matrix, if applicable. matrix=sprand(1750000 , 2000, 1000/1750000); whos matrix tic; matrix(:,1:3:end)=[]; ...

27 days ago | 0

Question


Suppress uitable cell borders
In Excel, there are buttons to select particular spreadsheet cell borders and hide them. Is there an analogous way to suppress t...

28 days ago | 1 answer | 0

1

answer

Answered
How to find the mask boundaries?
[Y,X,Z]=find(Mask); S=X+Y+Z; [~,i]=min(S); [~,j]=max(S); [Xmin,Ymin,Zmin, Xmax,Ymax,Zmax] =deal( X(i), Y(i), Z(i), X...

28 days ago | 0

| accepted

Answered
How to restart a new backgroundPool
delete(pool) pool = backgroundPool;

1 month ago | 0

Answered
Slim code for smoothing spline fit with predefined knots, concavity and monotonicity
One path would be to obtain the matrix form for the spline interpolator, which I do in the example below using func2mat from th...

1 month ago | 1

| accepted

Answered
"isfield" for hidden field in optimoptions
One way: options = optimoptions(@fsolve,'JacobPattern',speye(5)); isNonDefault = ~isequal(options.JacobPattern, optimoption...

1 month ago | 1

Answered
nargin of optional arugments
The function "func" has 3 input arguments, why nargin is 1? There are 5 input arguments, not 3: func(1,arg2=3,arg3=5) func...

1 month ago | 0

Answered
Why is my matrix being multiplied by scientific notation?
That's the default way that double floats are displayed in the command window. It is purely a matter of display. The actual valu...

1 month ago | 0

Answered
How to Simplify Passing Multiple Arguments from Structs in MATLAB Function Calls?
You can use namedargs2cell and comma-separated list expansion to pass multiple name-value pairs,e.g., function main(struct_n,st...

1 month ago | 0

Answered
Check if the value for a field in a struct exists
Watch your struct() syntax, A=struct('a',[]) %field 'a' with empty matrix isempty(A.a) B=struct('a',{{}}) %field 'a' with em...

1 month ago | 0

Answered
Image registration on segmented images
My question is thus : Is it possible to perform an image registration on a segmented image? You could use the segmentation to ...

1 month ago | 1

Answered
Tally Instances of Negative Numbers in an Array (for loop)
We don't know the names of the variables in the .mat file. If it contains a variable named B that you are trying to load into A,...

1 month ago | 1

| accepted

Answered
Poor performance of trainNetwork() function as compared to train()
I have tried playing with the training parameters in the trainNetwork and this is the best I was able to set You can try using ...

1 month ago | 0

Answered
How to restrict train() function to a select gpu pool?
This might work, setenv('CUDA_VISIBLE_DEVICES', '1,2'); % MATLAB indexes from 1, CUDA from 0

1 month ago | 0

Answered
Alternative to ginput for finding curve intersections with unevenly spaced data in MATLAB
Use fminbnd or fzero, x=sort(rand(1,12)*5); y1=[0,1,-1*x(3:end)+3+2*x(3)]; y2=2*x-3; f=@(z) interp1(x,y1,z)-interp1(x,y2,...

1 month ago | 1

| accepted

Answered
Linear polyfit results don't look like they fit
Because both your x and y data have random errors, polyfit() is not going to be the best tool. I would recommend instead linear2...

1 month ago | 0

Load more