代码搜索:Matrices
找到约 3,616 项符合「Matrices」的源代码
代码结果 3,616
www.eeworm.com/read/358191/10194232
cpp mmult2.cpp
// multiply compatible matrices
#include
#include "make2db.h"
template
void Mult(T **a, T **b, T **c, int m, int n, int p)
{// Multiply the m x n matrix a and the n x p
www.eeworm.com/read/161587/10393940
cpp mmult2.cpp
// multiply compatible matrices
#include
#include "make2db.h"
template
void Mult(T **a, T **b, T **c, int m, int n, int p)
{// Multiply the m x n matrix a and the n x p
www.eeworm.com/read/278154/10563218
dat matrx3.dat
FILE OF MATRICES FOR SVDCMP:
Number of Rows, Columns
5 3
Matrix
1.0 2.0 3.0
2.0 3.0 4.0
3.0 4.0 5.0
4.0 5.0 6.0
5.0 6.0 7.0
NEXT PROBLEM:
Number of Rows, Columns
5 5
Matrix
1.0 2.0 3.0 4.
www.eeworm.com/read/351797/10609710
m evaluate.m
function K = evaluate(ker, x1, x2)
% EVALUATE
%
% Evaluate a Gaussian radial basis kernel, for example
%
% K = evaluate(kernel, x1, x2);
%
% where x1 and x2 are matrices containing input p
www.eeworm.com/read/351797/10609848
m evaluate.m
function K = evaluate(ker, x1, x2)
% EVALUATE
%
% Evaluate a linear kernel, for example
%
% K = evaluate(ker, x1, x2);
%
% where x1 and x2 are matrices containing input patterns, where ea
www.eeworm.com/read/421960/10674131
m evaluate.m
function K = evaluate(ker, x1, x2)
% EVALUATE
%
% Evaluate a Gaussian radial basis kernel, for example
%
% K = evaluate(kernel, x1, x2);
%
% where x1 and x2 are matrices containing input p
www.eeworm.com/read/421959/10674154
m evaluate.m
function K = evaluate(ker, x1, x2)
% EVALUATE
%
% Evaluate a linear kernel, for example
%
% K = evaluate(ker, x1, x2);
%
% where x1 and x2 are matrices containing input patterns, where ea
www.eeworm.com/read/273057/10930094
m evaluate.m
function K = evaluate(ker, x1, x2)
% EVALUATE
%
% Evaluate a Gaussian radial basis kernel, for example
%
% K = evaluate(kernel, x1, x2);
%
% where x1 and x2 are matrices containing input p
www.eeworm.com/read/273049/10930323
m evaluate.m
function K = evaluate(ker, x1, x2)
% EVALUATE
%
% Evaluate a linear kernel, for example
%
% K = evaluate(ker, x1, x2);
%
% where x1 and x2 are matrices containing input patterns, where ea
www.eeworm.com/read/459616/7270491
cpp madd.cpp
// matrix addition
#include
#include "make2db.h"
template
void Add( T **a, T **b, T **c, int rows, int cols)
{// Add matrices a and b to obtain matrix c.
for (int i = 0; i