Sinc Matrix
Types
Properties
Returns a value if the matrix is scalar otherwise throws an error.
Returns a value if the matrix is scalar otherwise throws an error.
Matrix transpose
Functions
Citation: Matlab central
Create a row vector by indexing elements row by row
Differentiates the vector by wavelet transformation using the mexican-hat wavelet.
Equals to as in A == B
Equals to as in A == b
Only second order filters are supported. Thus, length(B) == length(A) == 3 is assumed.
Only second order filters are supported. Thus, length(B) == length(A) == 3 is assumed.
kotlin-way of doing get(mlScript: String).
Indexing starts at 1, like Octave/MATLAB.
Supported Octave scripts: 1:5,4:7 and 1:5,4 and 1:5,: and 1,4:7 and :,4:7 and : and 1:end,end:end-1 and 1:5 and 1:end-1 and end:end-1
Indexing starts at 1, like Octave/MATLAB.
Indexing starts at 1, like Octave/MATLAB.
Indexing starts at 1, like Octave/MATLAB.
Indexing starts at 1, like Octave/MATLAB.
Indexing starts at 1, like Octave/MATLAB.
Greater than as in A b
The IQR function is compatible with MATLAB 2020b and not with Octave 6.2.0. C.F. bug no. 59636
Less than as in A < b
Not equals to as in A != B or A ~= B
Not equals to as in A != b or A ~= b
!A or ~A
Indexing starts at 1, like Octave/MATLAB. This function makes the underlying matrix a row vector.
As SincMatrix is row-major, reshape picks data from rows first and also fills rows first. Thus, a reshape such as reshape(A, 4, 3) on SincMatrix is equal to reshape(A', 3, 4)' on MATLAB/Octave.
Indexing starts at 1, like Octave/MATLAB.
Indexing starts at 1, like Octave/MATLAB.
Indexing starts at 1, like Octave/MATLAB.
Indexing starts at 1, like Octave/MATLAB.
Indexing with a logical vector containing 0's and 1's.
This function is like Octave's sgolayfilt, except that instead of order and filter length Savitzky-Golay a pre-computed projection matrix (bMatrix) is supplied.