⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 nobjs.h

📁 basic.c */ /**//* Project:NeuroBasic, basic package*//**/ /* Survey:This is a simple Basic b-code
💻 H
字号:
/****************************************************************//*								*//* Name:	nobjs.h						*//*								*//* Project:	NeuroBasic, basic package			*//*								*//* Survey:	Contains basic constant definitions of this	*//*		package.					*//*								*//* Author:	Urs Mueller					*//*		Electronics Laboratory, ETH Zuerich		*//*		Switzerland					*//*								*//* Created:	August 26, 1994					*//* Modified:	January 9, 1995 (mk)				*//*								*//****************************************************************//* constants *//*************/#define NO_OBJECT	-1		/* flag for invalid neuro- */					/* object index            */#define ALL_OBJECTS	-1		/* for release() function */#define MDISK		1	/* Floating p. patterns on Musicdisk */#define FLOAT		4	/* 32-bit floating-point format */#define FIXED		8	/* 8-bit compact fixed-point format */#define ASCII		16	/* ASCII Format */#define MDISK_MODUL	0	/* number of MDISK module *//* neuro-object definitions *//****************************/typedef struct{  MINT		format;			/* only 32 bit at this time */  MINT	        width;		        /* width of the array */  MINT		height;		        /* height of the array */  MINT		nvalues;		/* number of values */  MFLOAT	*pdata;			/* ^data */} array_t;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -