Beantwortet
How can i find the dy/dx of the differantial equation
"(My Code is correct)" To me it's not. See below for the correction (the problem is I can't see it's change the solution after ...

fast 6 Jahre vor | 0

| akzeptiert

Beantwortet
2D moving sum of a matrix
Assuming A is your array, w is the window size % testexample A=randi(10,5) movsum(movsum(A,w,1),w,2) % or conv2(A, ones...

fast 6 Jahre vor | 2

| akzeptiert

Beantwortet
How to avoid effect of number of extra zeros after decimal point on the equality between two arrays?
"How do I check the equality between the two arrays generated in such a manner? " tol = 2*eps(norm(y1,Inf)); norm(y1-y2,Inf)<=...

fast 6 Jahre vor | 2

| akzeptiert

Beantwortet
Given a couple of vectors with priorities, is there a fast built-in function to find the index of the largest value?
p1 = [1, 9, 3, 8, 4, 9, 1, 9, 5, 9]; % given p2 = [5, 15, 6, 7, 10, 10, 5, 15, 1, 15]; % given p3 = [1, 25, 3, 4, 11,...

fast 6 Jahre vor | 0

Beantwortet
computing error on least square fitting
Can i claim that the residual which is norm of (Ax-b)/b No make it norm(A*x-b) / norm(b)

etwa 6 Jahre vor | 0

Beantwortet
Smooth data to get the best approximation.
Here is what my ftting tool gives load('InputData_SmoothData.mat') pp=BSFK(XX,YY); % FEX file plot(XX,YY); plot(XX,ppva...

etwa 6 Jahre vor | 0

Beantwortet
find strings that contains a specific number of a substrings
cellfun(@(s) sum(s=='a')==2, str)

etwa 6 Jahre vor | 0

| akzeptiert

Beantwortet
fminunc gets first-order optimality of zero on iteration 0, does not find optimum
Again the step you tried might not be the step FMINUNC selects. It has a bunch of decision tree behind FMINUNC. I don't know why...

etwa 6 Jahre vor | 0

Beantwortet
How do i multiply 2 increasing variables
v0 = (10:1:20); theta = (30:1:40); v0_x = v0.*cosd(theta.'); % horizontal .* vertical vectors v0_y = v0.*sind(theta.');

etwa 6 Jahre vor | 0

Beantwortet
GUIDE Handle not updating
Try to put this [handles.Antenna(:).Info] = deal(readAntenna(selected,currDir)); in antennaId_Callback. (NOTE: You must call ...

etwa 6 Jahre vor | 0

Beantwortet
How to sort a array of matrix based on the maximum value
dmax = cellfun(@max, D); dmax(1) = Inf; [~,i] = sort(dmax,'descend'); D = D(i);

etwa 6 Jahre vor | 0

| akzeptiert

Beantwortet
fminunc gets first-order optimality of zero on iteration 0, does not find optimum
If your gradient is 0, then your FEM returns the exact same result for two different values of YM. This can be created by many ...

etwa 6 Jahre vor | 0

Beantwortet
interpolating the NaNs in Cell array - 180x1
y = fillmissing(y,'linear')

etwa 6 Jahre vor | 1

Beantwortet
Binning regions of a 2D matrix slices (and extending this into the third dimension)
This assumes the first/second dimensions of your matrix are divisible by 32 % Test matrix A=rand(512,128,1200); binsz = 32;...

etwa 6 Jahre vor | 1

| akzeptiert

Beantwortet
Vectorization of For loop
d = b(:,:)*a(:)

etwa 6 Jahre vor | 0

Beantwortet
Generating vector r of random noise
r = rand(1,100)*0.2 - 0.1

etwa 6 Jahre vor | 0

| akzeptiert

Beantwortet
Going back to original matrix
[~,B] = ismember(L,A,'rows')

etwa 6 Jahre vor | 0

| akzeptiert

Beantwortet
Graph is Blank ? why?
Try to add this after the statement of loading the file ich=fillmissing(ich,'nearest') and see it it fixes the issue.

etwa 6 Jahre vor | 0

Beantwortet
how to find index of string using AND operator when adding conditions
Your description is not clear to me so I give two versions idx = find(ismember(zz, {'A' 'B'})); or idx = find(ismember(zz, 'A...

etwa 6 Jahre vor | 1

Beantwortet
Strange behaviour computing l1 norm of rows of a matrix
Who build this sparse matrix B? If it's build from external source it can be not-valid. I believe there is a tool on FileExchan...

etwa 6 Jahre vor | 3

| akzeptiert

Beantwortet
Wrong Hessian output in fminunc
I guess the hessian is estimated from BFGS formula, that needs more than 1 FMINUNC iteration. In you case the minimum is reached...

etwa 6 Jahre vor | 0

Beantwortet
Undefined function 'ne' for input arguments of type 'table'.
Filefolder = find(table2array(Folderlinks)~="")

etwa 6 Jahre vor | 0

Beantwortet
y = randsample(population,k)
TMW never mentions it officially, but it's Fisher-Yates shuffle algorithm (source https://uk.mathworks.com/matlabcentral/answe...

etwa 6 Jahre vor | 0

Beantwortet
Standard deviation for a field inside a field?
arrayfun(@(s) std(s.BO.circle), structarray)

etwa 6 Jahre vor | 1

| akzeptiert

Beantwortet
find indicies of maximum and minmum elements of an array in its each segmented smaller arrays, plus mean
Test example A=1:100; indexA=[8 16 30 37 43 48 66 71 76 81 86 91 97]; Code I = zeros(siz...

etwa 6 Jahre vor | 1

| akzeptiert

Beantwortet
find minumum indices of one array in another array
A= [ 47 100 153 207 261 314 368 422 474 527 581 635 687 741 794 847 900 954 1007 1060]; B=[3...

etwa 6 Jahre vor | 0

Beantwortet
Accessing Elements in a 3D matrix using Linear Indexing ?
Given sz = [m,n,p] ans linidx is the linear index of an element, here is one way of computing the subindexes (row, col, page). T...

etwa 6 Jahre vor | 0

| akzeptiert

Beantwortet
Create surface consisting of two implicitly surfaces
"Can anyone help me with this question?" Not clear to me what exactly is the question. If you have two implicit equations for ...

etwa 6 Jahre vor | 0

| akzeptiert

Beantwortet
interpn vs griddata: how are results different?
Mathematical, in short the difference is INTERPN uses tensorial linear function on nd-hypercube that enclose the query point. ...

etwa 6 Jahre vor | 0

Mehr laden