代码搜索:Matrices
找到约 3,616 项符合「Matrices」的源代码
代码结果 3,616
www.eeworm.com/read/439271/7713237
m addnd.m
function [Pnum,Pden]=addnd(P1n,P1d,P2n,P2d,typ)
% ADDND Addition of two numerator and denominator matrices.
% ADDND(P1N,P1D,P2N,P2D) produces the correlated addition of P1N,P1D,
% P2N,P
www.eeworm.com/read/433764/7910817
m mod2matmul.m
function out=Mod2MatMul(matr1,matr2)
%out=Mod2MatMul(matr1,matr2)
%Finds a modulo 2 based matrix product of binary matrices (matr1 & matr2)
[r1,c1]=size(matr1);
[r2,c2]=size(matr2);
if c1~=r2
www.eeworm.com/read/167185/5462105
c toepsolve.c
toepsolve(Ma,G,D,Y,X,n0,n1,n2)
/* Ma is an n0 x n0 symmetric Toeplitz matrix, n0 odd, G and D are temporary
matrices of order n1=2n0-1 x n2=(n0+1)/2 and Y is a vector n0 long symmetric
about the mid v
www.eeworm.com/read/167185/5462220
c toepsolve.c
toepsolve(Ma,G,D,Y,X,n0,n1,n2)
/* Ma is an n0 x n0 symmetric Toeplitz matrix, n0 odd, G and D are temporary
matrices of order n1=2n0-1 x n2=(n0+1)/2 and Y is a vector n0 long symmetric
about the mid v
www.eeworm.com/read/268448/11139664
m mod2matmul.m
function out=Mod2MatMul(matr1,matr2)
%out=Mod2MatMul(matr1,matr2)
%Finds a modulo 2 based matrix product of binary matrices (matr1 & matr2)
[r1,c1]=size(matr1);
[r2,c2]=size(matr2);
if c1~=r2
www.eeworm.com/read/411357/11248192
m arrow3.m
function hn=arrow3(p1,p2,s,w,h,ip,alpha,beta)
% ARROW3
% ARROW3(P1,P2) will draw vector lines (2D/3D) from P1 to P2 with
% arrowheads, where P1 and P2 can be either nx2 matrices (for 2D),
%