亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? tmwtypes.h

?? 這本書(shū)是matlab經(jīng)典書(shū)籍
?? H
字號(hào):
/*
 * @(#)tmwtypes.h    generated by: makeheader 3.10  Fri Jun 14 22:33:05 2002
 *
 *		built from:	../../src/include/copyright.h
 *				../../src/include/tmwtypes.h
 */

#ifndef tmwtypes_h
#define tmwtypes_h


/* $Revision: 1.4 $ */
/*
 * Copyright (c) 1984-2001 The MathWorks, Inc.
 * All Rights Reserved.
 */



#ifndef __TMWTYPES__
#define __TMWTYPES__
/*
 * File    : tmwtypes.h
 * Abstract:
 *      Data types for use with MATLAB/SIMULINK and the Real-Time Workshop.
 *
 *      When compiling stand-alone model code, data types can be overridden
 *      via compiler switches.
 *
 *      Define NO_FLOATS to eliminate reference to real_T, etc.
 */

/* $Revision: 1.45 $ */

#include <limits.h>

#ifdef __APPLE_CC__
#include <stdbool.h>
#endif

#define LOGICAL_IS_A_TYPE
#define SPARSE_GENERALIZATION

#ifdef NO_FLOATS
# define double double_not_allowed
# define float  float_not_allowed
#endif /*NO_FLOATS*/

#ifndef NO_FLOATS

#ifndef __MWERKS__
# ifdef __STDC__
#  include <float.h>
# else
#  define FLT_MANT_DIG 24
#  define DBL_MANT_DIG 53
# endif
#endif

#endif /*NO_FLOATS*/

/*
 *      The following data types cannot be overridden when building MEX files.
 */
#ifdef MATLAB_MEX_FILE
# undef CHARACTER_T
# undef INTEGER_T
# undef BOOLEAN_T
# undef REAL_T
# undef TIME_T
#endif

/*
 *      The following define is used to emulate when all integer types are
 *      32-bits.  This is the case for TI C30/C40 DSPs which are RTW targets.
 */
#ifdef DSP32
# define INT8_T    int
# define UINT8_T   unsigned int
# define INT16_T   int
# define UINT16_T  unsigned int
#endif

/*
 * The uchar_T, ushort_T and ulong_T types are needed for compilers which do 
 * not allow defines to be specified, at the command line, with spaces in them.
 */

typedef unsigned char  uchar_T;
typedef unsigned short ushort_T;
typedef unsigned long  ulong_T;



/*=======================================================================*
 * Fixed width word size data types:                                     *
 *   int8_T, int16_T, int32_T     - signed 8, 16, or 32 bit integers     *
 *   uint8_T, uint16_T, uint32_T  - unsigned 8, 16, or 32 bit integers   *
 *   real32_T, real64_T           - 32 and 64 bit floating point numbers *
 *=======================================================================*/

#ifndef INT8_T
# if CHAR_MIN == -128
#  define INT8_T char
# elif SCHAR_MIN == -128
#  define INT8_T signed char
# endif
#endif
#ifdef INT8_T
 typedef INT8_T int8_T;
# ifndef UINT8_T
#  define UINT8_T unsigned char
# endif
 typedef UINT8_T uint8_T;
#endif


#ifndef INT16_T
# if SHRT_MAX == 0x7FFF
#  define INT16_T short
# elif INT_MAX == 0x7FFF
#  define INT16_T int
# endif
#endif
#ifdef INT16_T
 typedef INT16_T int16_T;
#endif


#ifndef UINT16_T
# if SHRT_MAX == 0x7FFF    /* can't compare with USHRT_MAX on some platforms */
#  define UINT16_T unsigned short
# elif INT_MAX == 0x7FFF
#  define UINT16_T unsigned int
# endif
#endif
#ifdef UINT16_T
 typedef UINT16_T uint16_T;
#endif


#ifndef INT32_T
# if INT_MAX == 0x7FFFFFFF 
#  define INT32_T int
# elif LONG_MAX == 0x7FFFFFFF
#  define INT32_T long
# endif
#endif
#ifdef INT32_T
 typedef INT32_T int32_T;
#endif


#ifndef UINT32_T
# if INT_MAX == 0x7FFFFFFF 
#  define UINT32_T unsigned int
# elif LONG_MAX == 0x7FFFFFFF
#  define UINT32_T unsigned long
# endif
#endif
#ifdef UINT32_T
 typedef UINT32_T uint32_T;
#endif

#ifndef NO_FLOATS

#ifndef REAL32_T
# ifndef __MWERKS__
#  if FLT_MANT_DIG >= 23
#   define REAL32_T float
#  endif
# else
#  define REAL32_T float
# endif
#endif
#ifdef REAL32_T
 typedef REAL32_T real32_T;
#endif


#ifndef REAL64_T
# ifndef __MWERKS__
#  if DBL_MANT_DIG >= 52
#   define REAL64_T double
#  endif
# else
#  define REAL64_T double
# endif
#endif
#ifdef REAL64_T
 typedef REAL64_T real64_T;
#endif

#endif /* NO_FLOATS*/

/*=======================================================================*
 * Fixed width word size data types:                                     *
 *   int64_T                      - signed 64 bit integers               *
 *   uint64_T                     - unsigned 64 bit integers             *
 *=======================================================================*/



#ifndef INT64_T
# if defined(__alpha) || defined(__ia64__)
#  define INT64_T long
#  define FMT64 "l"
# elif defined(_MSC_VER) || (defined(__BORLANDC__) && __BORLANDC__ >= 0x530) \
                         || (defined(__WATCOMC__)  && __WATCOMC__  >= 1100)
#  define INT64_T __int64
#  define FMT64 "I64"
# elif defined(__GNUC__) || defined(TMW_ENABLE_INT64)
#  define INT64_T long long
#  define FMT64 "ll"
# endif
#endif



#if defined(INT64_T)
# if (__GNUC__ > 2) || ((__GNUC__ == 2) && (__GNUC_MINOR__ >=9))
  __extension__
# endif
 typedef INT64_T int64_T;
#endif



#ifndef UINT64_T
# if defined(__alpha) || defined(__ia64__)
#  define UINT64_T unsigned long
#  define FMT64 "l"
# elif defined(_MSC_VER) || (defined(__BORLANDC__) && __BORLANDC__ >= 0x530) \
                         || (defined(__WATCOMC__)  && __WATCOMC__  >= 1100)
#  define UINT64_T unsigned __int64
#  define FMT64 "I64"
# elif defined(__GNUC__) || defined(TMW_ENABLE_INT64)
#  define UINT64_T unsigned long long
#  define FMT64 "ll"
# endif
#endif



#if defined(UINT64_T)
# if (__GNUC__ > 2) || ((__GNUC__ == 2) && (__GNUC_MINOR__ >=9))
  __extension__
# endif
 typedef UINT64_T uint64_T;
#endif



/*===========================================================================*
 * General or logical data types where the word size is not guaranteed.      *
 *  real_T     - possible settings include real32_T or real64_T              *
 *  time_T     - possible settings include real64_T or uint32_T              *
 *  boolean_T                                                                *
 *  char_T                                                                   *
 *  int_T                                                                    *
 *  uint_T                                                                   *
 *  byte_T                                                                   *
 *===========================================================================*/

#ifndef NO_FLOATS

#ifndef REAL_T
# ifdef REAL64_T
#  define REAL_T real64_T
# else
#  ifdef REAL32_T
#   define REAL_T real32_T
#  endif
# endif
#endif
#ifdef REAL_T
 typedef REAL_T real_T;
#endif

#ifndef TIME_T
# ifdef REAL_T
#  define TIME_T real_T
# endif
#endif
#ifdef TIME_T
 typedef TIME_T time_T;
#endif

#endif /* NO_FLOATS */

#ifndef BOOLEAN_T
# if defined(UINT8_T)
#  define BOOLEAN_T UINT8_T
# else
#  define BOOLEAN_T unsigned int
# endif
#endif
typedef BOOLEAN_T boolean_T;


#ifndef CHARACTER_T
# define CHARACTER_T char
#endif
typedef CHARACTER_T char_T;


#ifndef INTEGER_T
# define INTEGER_T int
#endif
typedef INTEGER_T int_T;


#ifndef UINTEGER_T
# define UINTEGER_T unsigned
#endif
typedef UINTEGER_T uint_T;


#ifndef BYTE_T
# define BYTE_T unsigned char
#endif
typedef BYTE_T byte_T;


/*===========================================================================*
 * Define Complex Structures                                                 *
 *===========================================================================*/
#ifndef NO_FLOATS

#ifndef CREAL32_T
#  ifdef REAL32_T
    typedef struct {
      real32_T re, im;
    } creal32_T;
#    define CREAL32_T creal32_T
#  endif
#endif

#ifndef CREAL64_T
#  ifdef REAL64_T
    typedef struct {
      real64_T re, im;
    } creal64_T;
#    define CREAL64_T creal64_T
#  endif
#endif

#ifndef CREAL_T
#  ifdef REAL_T
    typedef struct {
      real_T re, im;
    } creal_T;
#    define CREAL_T creal_T
#  endif
#endif

#endif /* NO_FLOATS */

#ifndef CINT8_T
#  ifdef INT8_T
    typedef struct {
      int8_T re, im;
    } cint8_T;
#    define CINT8_T cint8_T
#  endif
#endif

#ifndef CUINT8_T
#  ifdef UINT8_T
    typedef struct {
      uint8_T re, im;
    } cuint8_T;
#    define CUINT8_T cuint8_T
#  endif
#endif

#ifndef CINT16_T
#  ifdef INT16_T
    typedef struct {
      int16_T re, im;
    } cint16_T;
#    define CINT16_T cint16_T
#  endif
#endif

#ifndef CUINT16_T
#  ifdef UINT16_T
    typedef struct {
      uint16_T re, im;
    } cuint16_T;
#    define CUINT16_T cuint16_T
#  endif
#endif

#ifndef CINT32_T
#  ifdef INT32_T
    typedef struct {
      int32_T re, im;
    } cint32_T;
#    define CINT32_T cint32_T
#  endif
#endif

#ifndef CUINT32_T
#  ifdef UINT32_T
    typedef struct {
      uint32_T re, im;
    } cuint32_T;
#    define CUINT32_T cuint32_T
#  endif
#endif

/*=======================================================================*
 * Min and Max:                                                          *
 *   int8_T, int16_T, int32_T     - signed 8, 16, or 32 bit integers     *
 *   uint8_T, uint16_T, uint32_T  - unsigned 8, 16, or 32 bit integers   *
 *=======================================================================*/

#define  MAX_int8_T      ((int8_T)(127))            /* 127  */
#define  MIN_int8_T      ((int8_T)(-128))           /* -128 */
#define  MAX_uint8_T     ((uint8_T)(255))           /* 255  */
#define  MIN_uint8_T     ((uint8_T)(0))
                           
#define  MAX_int16_T     ((int16_T)(32767))         /* 32767 */
#define  MIN_int16_T     ((int16_T)(-32768))        /* -32768 */
#define  MAX_uint16_T    ((uint16_T)(65535))        /* 65535 */
#define  MIN_uint16_T    ((uint16_T)(0))
                           
#define  MAX_int32_T     ((int32_T)(2147483647))    /* 2147483647  */
#define  MIN_int32_T     ((int32_T)(-2147483647-1)) /* -2147483648 */
#define  MAX_uint32_T    ((uint32_T)(0xFFFFFFFFU))  /* 4294967295  */
#define  MIN_uint32_T    ((uint32_T)(0))

#if defined(_MSC_VER) || (defined(__BORLANDC__) && __BORLANDC__ >= 0x530) \
                      || (defined(__WATCOMC__)  && __WATCOMC__  >= 1100)
#  ifdef INT64_T
#    define  MAX_int64_T     ((int64_T)(9223372036854775807))
#    define  MIN_int64_T     ((int64_T)(-9223372036854775807-1))
#  endif
#  ifdef UINT64_T
#    define  MAX_uint64_T    ((uint64_T)(0xFFFFFFFFFFFFFFFFU))
#    define  MIN_uint64_T    ((uint64_T)(0))
#  endif
#else
#  ifdef INT64_T
#    define  MAX_int64_T     ((int64_T)(9223372036854775807LL))
#    define  MIN_int64_T     ((int64_T)(-9223372036854775807LL-1LL))
#  endif
#  ifdef UINT64_T
#    define  MAX_uint64_T    ((uint64_T)(0xFFFFFFFFFFFFFFFFLLU))
#    define  MIN_uint64_T    ((uint64_T)(0))
#  endif
#endif

#ifdef _MSC_VER
#  define uint64_to_double(u) (((u) > _I64_MAX) ? \
            (double)(__int64)((u) - _I64_MAX) + (double)_I64_MAX : \
            (double)(__int64)(u))
#else
#  define uint64_to_double(u) ((double)(u))
#endif

#if !defined(__cplusplus) && !defined(__bool_true_false_are_defined)

#ifndef _bool_T
#define _bool_T

typedef boolean_T bool;

#ifndef false
#define false (0)
#endif
#ifndef true 
#define true (1)
#endif

#endif /* _bool_T */

#endif /* !__cplusplus */

/* 
 * This software assumes that the code is being compiled on a target using a 
 * 2's complement representation for signed integer values.
 */
#if ((SCHAR_MIN + 1) != -SCHAR_MAX)
#error "This code must be compiled using a 2's complement representation for signed integer values"
#endif

/*
 * Maximum length of a MATLAB identifier (function/variable/model)
 * including the null-termination character.
 */
#define TMW_NAME_LENGTH_MAX 64

#endif  /* __TMWTYPES__ */

#endif /* tmwtypes_h */

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
caoporen国产精品视频| 国产精品久久久久久久岛一牛影视| 91精品1区2区| 色婷婷av一区二区三区gif | 欧美日韩综合色| 一本到不卡精品视频在线观看| eeuss鲁一区二区三区| 成人av在线播放网址| 成人免费视频网站在线观看| jvid福利写真一区二区三区| a美女胸又www黄视频久久| jiyouzz国产精品久久| 色欲综合视频天天天| 在线观看免费视频综合| 欧美老女人第四色| 7777精品久久久大香线蕉| 日韩一区和二区| 久久久久久免费| 国产精品第13页| 一区二区欧美精品| 蜜臀久久久久久久| 极品尤物av久久免费看| 成人午夜在线播放| 在线观看日韩av先锋影音电影院| 欧美精品 日韩| 久久综合九色综合欧美就去吻| 国产欧美视频一区二区| 亚洲少妇中出一区| 日韩av电影天堂| 国产成人免费在线视频| 91丨九色丨尤物| 欧美一区二区三区影视| 久久久九九九九| 亚洲综合999| 韩国女主播一区| 91麻豆swag| 欧美不卡123| 亚洲日本韩国一区| 免费精品视频在线| 99久久国产综合色|国产精品| 欧美日韩美少妇| 久久精品夜夜夜夜久久| 亚洲精品国产高清久久伦理二区| 日韩专区中文字幕一区二区| 国产成a人亚洲| 欧美午夜一区二区| 久久久久久久综合色一本| 亚洲精品国久久99热| 狠狠色丁香婷综合久久| 99精品欧美一区| 日韩欧美成人激情| 亚洲精品亚洲人成人网 | 91精品欧美一区二区三区综合在| 国产亚洲欧美激情| 香蕉av福利精品导航| 成人午夜电影久久影院| 亚洲天堂久久久久久久| 精品一区二区国语对白| 色琪琪一区二区三区亚洲区| 久久亚洲捆绑美女| 婷婷成人综合网| caoporm超碰国产精品| 精品理论电影在线| 午夜a成v人精品| 91麻豆蜜桃一区二区三区| 久久青草国产手机看片福利盒子| 亚洲大片在线观看| 91女厕偷拍女厕偷拍高清| xf在线a精品一区二区视频网站| 亚洲一区二区三区在线看| 成人国产在线观看| 久久久精品中文字幕麻豆发布| 午夜精品福利久久久| 色狠狠色狠狠综合| 国产精品久久久久永久免费观看| 精品一区二区免费| 欧美日本一道本| 亚洲午夜日本在线观看| 99国产精品久久久久久久久久 | 久久99久久久欧美国产| 欧美日韩视频一区二区| 中文字幕视频一区| 成人午夜又粗又硬又大| 久久欧美一区二区| 极品尤物av久久免费看| 日韩欧美国产精品一区| 石原莉奈在线亚洲二区| 欧美日韩精品专区| 亚洲国产欧美另类丝袜| 色8久久人人97超碰香蕉987| 国产精品毛片无遮挡高清| 国产激情一区二区三区| 久久久久久久久久看片| 国精产品一区一区三区mba桃花| 日韩欧美亚洲另类制服综合在线| 亚洲国产日产av| 欧美在线观看视频在线| 亚洲国产一区视频| 精品视频资源站| 亚洲成a人片综合在线| 欧美在线看片a免费观看| 亚洲一区二区三区激情| 欧美无砖专区一中文字| 婷婷综合五月天| 在线播放视频一区| 人禽交欧美网站| 日韩一卡二卡三卡| 另类中文字幕网| 久久久久久亚洲综合| 成人少妇影院yyyy| 欧美国产精品中文字幕| 成人av网站在线观看免费| 亚洲人成人一区二区在线观看| 91色婷婷久久久久合中文| 亚洲综合图片区| 欧美日本韩国一区二区三区视频| 日本aⅴ亚洲精品中文乱码| 天天综合网天天综合色| 欧美一区二区三区啪啪| 国产精品一区二区视频| 国产精品国模大尺度视频| 91久久精品一区二区三| 污片在线观看一区二区| 精品剧情在线观看| 成人综合婷婷国产精品久久蜜臀 | 日韩电影在线观看电影| 日韩欧美一区在线观看| 国产精品一区二区在线观看网站| 亚洲欧洲成人自拍| 欧美日韩激情在线| 黄色小说综合网站| 亚洲视频你懂的| 91精品国产福利在线观看| 国产一区在线观看视频| 亚洲欧美综合另类在线卡通| 欧美三级午夜理伦三级中视频| 美女性感视频久久| 国产精品少妇自拍| 制服.丝袜.亚洲.中文.综合| 国产精品影视天天线| 亚洲一区二区三区在线播放| 日韩欧美一区中文| 91老司机福利 在线| 日韩精品成人一区二区在线| 国产女主播视频一区二区| 91激情在线视频| 久久精品国产99久久6| 亚洲国产成人一区二区三区| 欧美三级在线看| 国产99精品国产| 日韩专区欧美专区| 国产精品进线69影院| 日韩午夜激情免费电影| 成人动漫一区二区| 蜜桃久久久久久| 亚洲人成亚洲人成在线观看图片 | 欧美一级生活片| 成人久久视频在线观看| 亚洲成av人**亚洲成av**| 国产日韩在线不卡| 欧美精品成人一区二区三区四区| 成人综合在线观看| 蜜臀久久99精品久久久久宅男| 中文字幕一区二区在线播放| 日韩一区二区三区视频在线观看| jlzzjlzz亚洲日本少妇| 久久99日本精品| 亚洲亚洲人成综合网络| 国产精品理伦片| 欧美一级二级在线观看| 欧洲国产伦久久久久久久| 成人免费毛片片v| 精品一区二区精品| 日韩av一区二区三区四区| 亚洲最快最全在线视频| 国产亚洲福利社区一区| 欧美一级片免费看| 亚洲视频在线观看一区| 欧美videossexotv100| 欧美电影在线免费观看| 色哟哟一区二区在线观看| 国产东北露脸精品视频| 蜜芽一区二区三区| 视频一区二区三区中文字幕| 亚洲欧美日韩国产中文在线| 中文字幕精品—区二区四季| 精品福利二区三区| 日韩亚洲欧美在线| 欧美一区二区三区性视频| 欧美少妇bbb| 欧美性色欧美a在线播放| 91美女片黄在线观看91美女| 成人a免费在线看| 国产成人欧美日韩在线电影| 国内外成人在线视频| 久久精品国产一区二区三| 人人精品人人爱| 日本vs亚洲vs韩国一区三区 | 欧日韩精品视频| 色久综合一二码|