代码搜索:Matrix
找到约 10,000 项符合「Matrix」的源代码
代码结果 10,000
www.eeworm.com/read/143595/12857279
c hmath.c
/* ----------------------------------------------------------- */
/* */
/* ___ */
/*
www.eeworm.com/read/244493/12860548
c 逆矩阵.c
#define N 5 /*[注]:修改6为你所要的矩阵阶数*/
#include "stdio.h"
#include "conio.h"
/*js()函数用于计算行列式,通过递归算法实现*/
int js(s,n)
int s[][N],n;
{int z,j,k,r,total=0;
int b[N][N];/*b[N][N]用于存放,在矩阵s[
www.eeworm.com/read/330348/12900360
readme
MATRIX example program
serial.c
1.Compiler and build
execute "make" will create executable file.
2.Download to MATRIX
use ftp or USB/SD to put the executable file into MATRIX.
3.Execute example
fir
www.eeworm.com/read/243948/12906077
cc shape.cc
/////////////////////////////////////////////////////////////
// Flash Plugin and Player
// Copyright (C) 1998,1999 Olivier Debon
//
// This program is free software; you can redistribute it and/or
/
www.eeworm.com/read/329960/12924031
h obsolete.h
#ifdef GHMM_OBSOLETE
#ifndef GHMM_OBSOLETE_H
#define GHMM_OBSOLETE_H
#include "scanner.h"
#include "model.h"
/*================== matrix.h ===============================================*/
/**
R
www.eeworm.com/read/243633/12930548
c 逆矩阵.c
#define N 5 /*[注]:修改6为你所要的矩阵阶数*/
#include "stdio.h"
#include "conio.h"
/*js()函数用于计算行列式,通过递归算法实现*/
int js(s,n)
int s[][N],n;
{int z,j,k,r,total=0;
int b[N][N];/*b[N][N]用于存放,在矩阵s[
www.eeworm.com/read/243560/12933914
c 逆矩阵.c
#define N 5 /*[注]:修改6为你所要的矩阵阶数*/
#include "stdio.h"
#include "conio.h"
/*js()函数用于计算行列式,通过递归算法实现*/
int js(s,n)
int s[][N],n;
{int z,j,k,r,total=0;
int b[N][N];/*b[N][N]用于存放,在矩阵s[
www.eeworm.com/read/243539/12935077
m dh.m
%DH Matrix representation of manipulator kinematics
%
% The original robot toolbox functions used a DH matrix to describes the
% kinematics of a manipulator in a general way.
%
% For an n-axis manipul
www.eeworm.com/read/243539/12935094
m dyn.m
%DYN Matrix representation of manipulator kinematics and dynamics
%
% The original robot toolbox functions used a DYN matrix to describes the
% kinematics and dynamics of a manipulator in a general wa
www.eeworm.com/read/243505/12936842
m numrows.m
%
% NUMROWS(m)
%
% Return the number of rows in the matrix m
%
function r = numrows(m)
[r,x] = size(m);