代码搜索:Matrices
找到约 3,616 项符合「Matrices」的源代码
代码结果 3,616
www.eeworm.com/read/296909/8072984
m mpower.m
function r = mpower(x,y)
% GPVAR/MPOWER Implement '^' for GP variable.
%
if( ~isnumeric(y) )
error('The exponent in the power must be a numerical value.');
end
if( length(x) > 1 )
error(['Canno
www.eeworm.com/read/296909/8073079
m inv.m
function r = inv(x)
% MONOMIAL/INV Implements inverse function for monomials
% (it takes pointwise inverse for vectors and matrices).
%
r = x.^(-1);
www.eeworm.com/read/146126/12668756
cpp makematrixdata.cpp
#include
using namespace std;
int main()
{
int n = 500; // matrix size
// initialize the matrices a and b
cout
www.eeworm.com/read/331439/12828482
m bidiagonalize.m
function [U, B, V] = bidiagonalize(A)
% Bidiagonalize A, such that U * A * V = B and U' * B * V' = A. B is the
% same size as A, has no vector part, and is upper or lower bidiagonal
% depending on it
www.eeworm.com/read/331439/12828533
m test_svdj.m
% Test code for the svdj function. This function works on real,
% complex and quaternion matrices, so we need to test it on more
% than just quaternions.
% Copyright
www.eeworm.com/read/244597/12853385
cpp xqrupdt.cpp
#include
#include
#include
#include
#include "nr.h"
using namespace std;
// Driver for routine qrupdt
int main(void)
{
bool sing;
www.eeworm.com/read/244597/12853912
cpp xludcmp.cpp
#include
#include
#include
#include
#include "nr.h"
using namespace std;
// Driver for routine ludcmp
int main(void)
{
int j,k,l,m,n,dum;
www.eeworm.com/read/244597/12853966
cpp xqrdcmp.cpp
#include
#include
#include
#include
#include "nr.h"
using namespace std;
// Driver for routine qrdcmp
int main(void)
{
bool sing;
www.eeworm.com/read/330732/12871644
plg simpleshapemanipulation.plg
Build Log
--------------------Configuration: SimpleShapeManipulation - Win32 Release--------------------
Command Lines
Creating temporary file
www.eeworm.com/read/243813/12915632
java testmatrixoperation.java
// TestMatrixOperation.java: Add and multiply two matrices
public class TestMatrixOperation
{
// Main method
public static void main(String[] args)
{
// Create two matrices as two dime