Beantwortet
Faster polygon operations than polyshape
I used http://www.angusj.com/delphi/clipper.php#code with satisfaction

mehr als 5 Jahre vor | 1

Beantwortet
MeX implementation of Tensorproduct multiplications
I propose two other methods of MATLAB. The first simply replaces (:,:) by RESHAPE. The first doing some data copy, the second d...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
When is minimum p-norm solution independent of p?
This code is a toy example of 2 x 2 with random f0 and show most of the time it driven by the linear constraints and all three g...

mehr als 5 Jahre vor | 2

Beantwortet
Generate a Matrix with the structure in the description
A=nchoosek(1:128,2)

mehr als 5 Jahre vor | 1

| akzeptiert

Frage


MEX: How to modify xml file for unsupported compiler?
Context: I download the intel oneAPI C++ compiler. The C compiler is not supported by Matlab R2020b and I try to design the xm...

mehr als 5 Jahre vor | 1 Antwort | 3

1

Antwort

Beantwortet
Avoid MCR CACHE deletion each time an executable is launched
"Now, if I launch the Filter.exe, the folder of the Init.exe in the MCR_CACHE is deleted and a folder for the Filter.exe in the ...

mehr als 5 Jahre vor | 0

Beantwortet
How to Generate Randomized Data Set with Given Mean/Median/Standard Deviation
There is infinity of random variables with the same mean/median/standard deviation Here is one that meet what you ask (three di...

mehr als 5 Jahre vor | 0

Beantwortet
Vectorize for loop: corr2(A(:,:,i),B(:,:,i))
If you have R2020b, you mght try to vectorize with pagemtimes function (or use mtimesx from File exchange) meanA = mean(A,[1 2]...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
Multiplication of tranformation matrices gives strange result
Your decription does not match with what your code is doing (your code) You take T1 on (x,y) data You take T2 on (x,y)...

mehr als 5 Jahre vor | 1

| akzeptiert

Beantwortet
How to find the last 1 in every row
Depending on the density of 1s, but a for-loop (remember that?) might be the fatest function BenchMax A=rand(10000)>0.5; ...

mehr als 5 Jahre vor | 0

Beantwortet
Reshape data vector for a surf plot over a non-rectangular domain
A diamond shape is bijective mapped from/to a rectangular shape, thus meshgrid/ndgrid combined with surf are still applicable. ...

mehr als 5 Jahre vor | 1

Beantwortet
Matrix Operation and decomposition
Just straight as-it-is syntax A^(1/2) A^(-1/2) or sqrtm(A) inv(sqrtm(A)) % sqrtm(inv(A)) Checkout https://www.mathworks.co...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
atan2 not consisent
Your result atan2(a(77:78,2),a(77:78,3)) ans = 3.141592653589793 -3.141592653589793 Type single value a(78,2) yo...

mehr als 5 Jahre vor | 0

Beantwortet
Determinant of a unitary matrix
Here is one way of computing determinant of a complex matrix U, based on Q-less qr n = size(U,1); d = 1; for k=1:n i = k...

mehr als 5 Jahre vor | 0

Beantwortet
Counting consecutive negative numbers in an array
length(strfind([false v<0],[0 1])) or sum(diff([false v<0])==1)

mehr als 5 Jahre vor | 1

| akzeptiert

Beantwortet
Output only numbers with complex conjugate
a(ismember(a,conj(a))&imag(a)>=0)

mehr als 5 Jahre vor | 0

| akzeptiert

Gesendet


Random unitary matrix (and standard subgroup of U(n))
Generate matrix of one of these four supported types of groups: O(n), SO(n), U(n), SU(n)

mehr als 5 Jahre vor | 1 Download |

5.0 / 5

Beantwortet
Possible combinations for a vector
dec2base(0:3^9-1,3)-'0'

mehr als 5 Jahre vor | 0

Frage


Determinant of a unitary matrix
Is there any other (better) way to compute the determinant of the unitay matrix beside det (that calls lu factorization)? >> [U...

mehr als 5 Jahre vor | 2 Antworten | 0

2

Antworten

Beantwortet
Create Random Points in Elliptical Belt
If the two ellipse has the same aspect ratio and aligned then this is the method without rejection. n=1e4; ax=3; ay=1; rin...

mehr als 5 Jahre vor | 0

Beantwortet
Find angle of rotation matrix in MATLAB
Yes the approach is wrong your code has plenty of bugs* you need to learn how to debug you need to pratice MATLAB onramp O...

mehr als 5 Jahre vor | 0

Beantwortet
difference between str2num and str2double for getting a matrix
Under the hood str2num uses EVAL str2double uses SCANF, and work only on scalar. I see no reason why SCANF is more accurate t...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
how to calculate number of unique element in array?
c =[ 1 1 1 1 1 1 2 1 2 2 2 3 2 4 2 5 2 5 3...

mehr als 5 Jahre vor | 0

Beantwortet
What is the simplest way to map vector values of float to matrix of floats ?
The only vector of key map container supports is char vector (variable length) If your vector has fixe length say n; you could ...

mehr als 5 Jahre vor | 0

Beantwortet
Solving a linear system equations with variables on both sides
See my answer in another thread.

mehr als 5 Jahre vor | 0

Beantwortet
Bit wise operation of And and XOR together
Z=quad(0,1,1,0,1,0,1,1) function F10 = quad(u2,v2,w2,x2,u3,v3,w3,x3) % note: u2 and u3 not used anywhere F10=1+v2+x2+x2*v2+...

mehr als 5 Jahre vor | 0

Beantwortet
Surface plot not displaying full data range
Cross answer

mehr als 5 Jahre vor | 0

Beantwortet
surface plot face not showing colors corresponding to Zgrid in some areas
Here is a workaround, keep flat facecolor. You can use mean/min instead of max depending on what is relevant for you. Z=peaks(1...

mehr als 5 Jahre vor | 0

Frage


LOADLIBRARY error 'CL' and LIMITS.H not found
I get this error message recently >> loadlibrary('C:\WINDOWS\system32\user32.dll', 'WinMouse.h') Error using loadlibrary Fail...

mehr als 5 Jahre vor | 0 Antworten | 4

0

Antworten

Beantwortet
grouping indices based on how close they are
If your array is sorted >> c = mat2cell(a,1,diff(find([true diff(a)>5 true]))); c{:} ans = 11 12 13 ans = ...

mehr als 5 Jahre vor | 0

| akzeptiert

Mehr laden