代码搜索:matrix-vector
找到约 19 项符合「matrix-vector」的源代码
代码结果 19
www.eeworm.com/read/319487/13450517
h fdm.h
// file fdm.h
#ifndef FDM_ELLP_H
#define FDM_ELLP_H
#include
#include
#include "matvec.h" // my matrix-vector library
template
www.eeworm.com/read/378188/9242463
f mvaxpy.f
Subroutine mvaxpy( a, b, c, lda, m, n )
! ----------------------------------------------------------------------
! --- Routine 'mvaxpy' does a matrix-vector multiplication 'Ab = c'
! using a
www.eeworm.com/read/378188/9242473
f mvddot.f
Subroutine mvddot( a, b, c, lda, m, n )
! ----------------------------------------------------------------------
! --- Routine 'mvddot' does a matrix-vector multiplication 'Ab = c'
! using a
www.eeworm.com/read/378186/9243043
f mvddot.f
Subroutine mvddot( a, b, c, m, n )
! ----------------------------------------------------------------------
! --- Routine 'mvddot' does a matrix-vector multiplication 'Ab = c'
! using a dotp
www.eeworm.com/read/134479/5892668
br spmatrixvec.br
/*
Sparse Matrix-Vector Multiply
Simple example of how to perform a sparse matrix vector multiplication
(y = Ax) where the sparse matrix A is represented in padded compressed
sparse row, a
www.eeworm.com/read/482929/6616355
h example_specific.h
/* Data structure used for exchange information before performing */
/* a matrix-vector product in Aztec's matrix-free example. */
/* NOTE: NEIGHBOR(k) = (LEFT,RIGHT,BOTTOM,TOP)
www.eeworm.com/read/185152/9054720
m mvop.m
function result = mvop(matrix, vector, op)
%result = MVOP(matrix, vector, op)
%
%Apply a binary array operation on a matrix-vector pair
%
%Input:
% MATRIX - first argument (matrix M x N)
% VECTOR -
www.eeworm.com/read/378188/9242380
f sym7mxv.f
Subroutine sym7mxv( n1, n2, n3, a, x, y )
! ---------------------------------------------------------------------
! --- sym7mxv does a matrix-vector multiply of a banded symmetric
! matrix o
www.eeworm.com/read/296725/8080105
cpp 1.cpp
template
void BandMtx::GaussElimPP(Vcr&bb) const{
if (nrows != bb.size())
error("matrix-vector sizes not match");
BandMtx tx(nrows,bwleft,min(nrows-1,bwleft+bwrit));
for