代码搜索:Matlib
找到约 242 项符合「Matlib」的源代码
代码结果 242
www.eeworm.com/read/232932/14176272
txt 说明.txt
演示程序: CMMATools.exe
神经网络类(BP算法): BpNet_src.zip
作者:同济大学材料学院 张纯禹
email:chunyu_79@hotmail.com
//------------ VC知识库www.VCKBASE.com 发布于 2002 -----------------/
人工神经网络BP算法
1、动态改变学习速率
2、加入动量项
3
www.eeworm.com/read/125242/14504743
cpp ccallmatlabfunc.cpp
using System;
using System.Runtime.InteropServices;
using MATLIB;
namespace MATHAPP
{
///
/// MATHAPP
/// Author : zhu8jie_@msn.com
/// Copyright (c) 2004.
/// All Rights Reserve
www.eeworm.com/read/150876/5688730
h mysin.h
#include "matlib.h"
#ifndef __Mysin_h
#define __Mysin_h
Mm Mysin(Mm x1, Mm x2);
#endif // __Mysin_h
www.eeworm.com/read/150876/5688737
h mycos.h
#include "matlib.h"
#ifndef __Mycos_h
#define __Mycos_h
Mm Mycos(Mm x1, Mm x2);
#endif // __Mycos_h
www.eeworm.com/read/101007/6262409
cpp 3dsexport.cpp
#include "../Fly3D.h"
export3ds::export3ds(char *filename, float scale, material *matlib, int nmatlib)
{
m_fp=fopen(filename,"wb");
if(m_fp==NULL)
return;
M3DMAGIC_bpatch=WriteChunk(M3D
www.eeworm.com/read/415659/11059519
h graph3d.h
#ifndef __Graph3d_h
#define __Graph3d_h
#include "matlib.h"
Mm Graph3d();
#endif // __Graph3d_h
www.eeworm.com/read/101007/6262664
h scene_max.h
class light_max
{
public:
char name[256];
int type;
vector color,pos,target,dir;
float hotspot,falloff;
};
class bsp_node_max : public bsp_node
{
public:
int nplanes,side;
plane *
www.eeworm.com/read/169491/5420643
makefile
#!/usr/bin/make
# $Id: Makefile,v 2.1 2002/09/30 15:20:49 tramm Exp $
#################################
#
# All things that we will build
#
LIBS = \
libmat \
TESTS = \
benchma
www.eeworm.com/read/294317/8241828
txt 说明.txt
人工神经网络BP算法
1、动态改变学习速率
2、加入动量项
3、运用了Matcom4.5的矩阵运算库(可免费下载,头文件matlib.h),
方便矩阵运算,当然,也可自己写矩阵类
4、可暂停运算
5、可将网络以文件的形式保存、恢复