代码搜索:Matrices
找到约 3,616 项符合「Matrices」的源代码
代码结果 3,616
www.eeworm.com/read/268287/11145444
m hz_average2.m
function [y,acc]=hz_average2(u,acc)
% returns the scalar value for
% avaergae of matrix u
% special case of avergaing 2x2 matrices using righ-shift
N=size(u,1)*size(u,2);
for i=1:N
acc(1) = acc(1) +
www.eeworm.com/read/413179/11163938
m assembly.m
% assemble element matrices and vectors
function [K,f] = assembly(K,f,e,ke,fe)
include_flags;
for loop1 = 1:nen*ndof
i = LM(loop1,e);
f(i) = f(i) + fe(loop1); % assemble element ve
www.eeworm.com/read/413179/11163963
m assembly.m
% assemble element matrices and vectors
function [K,f] = assembly(K,f,e,ke,fe)
include_flags;
for loop1 = 1:nen
i = LM(loop1,e);
f(i) = f(i) + fe(loop1); % assemble forces
for
www.eeworm.com/read/411382/11247758
m shuffle.m
function [o1,o2,o3,o4,o5] = shuffle(n1,n2,n3,n4,n5)
% function [o1,o2,o3,o4,o5] = shuffle(n1,n2,n3,n4,n5)
%
% shuffles rows of matrices maintaining same order between them
%
[r c]=size(n1);
www.eeworm.com/read/201477/15407331
cpp mmult1.cpp
// multipy square matrices
#include
#include "make2db.h"
template
void Mult(T **a, T **b, T **c, int n)
{// Multiply the n x n matrices a and b to get c.
for (int i
www.eeworm.com/read/188426/8541293
m makeb.m
function [Bp, Bpp] = makeB(baseMVA, bus, branch, alg)
%MAKEB Builds the FDPF matrices, B prime and B double prime.
% [Bp, Bpp] = makeB(baseMVA, bus, branch, alg) returns the two
% matrices B
www.eeworm.com/read/282438/9093592
c quant_mpeg.c
/*****************************************************************************
*
* XVID MPEG-4 VIDEO CODEC
* - MPEG4 Quantization related header -
*
* Copyright(C) 2001-2003 Peter Ross
www.eeworm.com/read/184304/9110730
c my_ex1.c
/*
* ex1.c
*
* Copyright (c) 1995-1999 by The Mathworks, Inc. All Rights Reserved.
*/
/* $Revision: 1.6 $ */
#include
#include /* used for EXIT_SUCCESS */
#i
www.eeworm.com/read/181987/9222673
c my_ex1.c
/*
* ex1.c
*
* Copyright (c) 1995-1999 by The Mathworks, Inc. All Rights Reserved.
*/
/* $Revision: 1.6 $ */
#include
#include /* used for EXIT_SUCCESS */
#i
www.eeworm.com/read/366144/9829855
c xdr_matrix.c
/* -----------------------------------------------------------------------------
* xdr_Matrix.c - Read and write LinAl matrices with xdr routines.
* Copyright 1998 by rokrau
* -------------