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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? chirp0.h

?? 線性調頻信號用于超寬帶通信系統調制波形研究
?? H
?? 第 1 頁 / 共 2 頁
字號:
/*
 * Chirp0.h
 *
 * Real-Time Workshop code generation for Simulink model "Chirp0.mdl".
 *
 * Model Version                        : 1.0
 * Real-Time Workshop file version      : 5.0 $Date: 2002/05/30 19:21:33 $
 * Real-Time Workshop file generated on : Tue Dec 05 16:37:42 2006
 * TLC version                          : 5.0 (Jun 18 2002)
 * C source code generated on           : Tue Dec 05 16:37:42 2006
 */

#ifndef _RTW_HEADER_Chirp0_h_
# define _RTW_HEADER_Chirp0_h_

#include <limits.h>
#include "tmwtypes.h"
#ifndef _Chirp0_COMMON_INCLUDES_
# define _Chirp0_COMMON_INCLUDES_
#include <math.h>
#include <string.h>

#include "simstruc_types.h"
#include "rt_logging.h"
#include "rtlibsrc.h"

#endif                                  /* _Chirp0_COMMON_INCLUDES_ */

#include "Chirp0_types.h"

#define MODEL_NAME                      Chirp0
#define NSAMPLE_TIMES                   (2)                      /* Number of sample times */
#define NINPUTS                         (0)                      /* Number of model inputs */
#define NOUTPUTS                        (1)                      /* Number of model outputs */
#define NBLOCKIO                        (1)                      /* Number of data output port signals */
#define NUM_ZC_EVENTS                   (0)                      /* Number of zero-crossing events */

#ifndef NCSTATES
# define NCSTATES (0)                   /* Number of continuous states */
#elif NCSTATES != 0
# error Invalid specification of NCSTATES defined in compiler command
#endif

/* Intrinsic types */
#ifndef POINTER_T
# define POINTER_T
typedef void * pointer_T;
#endif

/* Block signals (auto storage) */
typedef struct _BlockIO {
  real_T Gain;                          /* '<S1>/Gain' */
} BlockIO;

/* Parameters (auto storage) */
struct _Parameters {
  real_T deltaFreq_Value;               /* Expression: 2*pi*(f2-f1)
                                         * '<S1>/deltaFreq'
                                         */
  real_T targetTime_Value;              /* Expression: T
                                         * '<S1>/targetTime'
                                         */
  real_T Gain_Gain;                     /* Expression: 0.5
                                         * '<S1>/Gain'
                                         */
  real_T initialFreq_Value;             /* Expression: 2*pi*f1
                                         * '<S1>/initialFreq'
                                         */
};

/* External outputs (root outports fed by signals with auto storage) */
typedef struct _ExternalOutputs_tag {
  real_T Out2;                          /* '<Root>/Out2' */
} ExternalOutputs;

/* Real-time Model Data Structure */
struct _rtModel_Chirp0_Tag {
  const char *path;
  const char *modelName;
  struct SimStruct_tag * *childSfunctions;
  const char *errorStatus;
  SS_SimMode simMode;
  RTWLogInfo *rtwLogInfo;
  RTWExtModeInfo *extModeInfo;
  RTWSolverInfo *solverInfo;
  void *sfcnInfo;

  /*
   * ModelData:
   * The following substructure contains information regarding
   * the data used in the model.
   */
  struct {
    void *blockIO;
    const void *constBlockIO;
    real_T *defaultParam;
    ZCSigState *prevZCSigState;
    real_T *contStates;
    real_T *discStates;
    real_T *derivs;
    real_T *nonsampledZCs;
    void *inputs;
    void *outputs;
    boolean_T contStateDisabled;
    boolean_T zCCacheNeedsReset;
    boolean_T derivCacheNeedsReset;
    boolean_T blkStateChange;
  } ModelData;

  /*
   * Sizes:
   * The following substructure contains sizes information
   * for many of the model attributes such as inputs, outputs,
   * dwork, sample times, etc.
   */
  struct {
    uint32_T checksums[4];
    uint32_T options;
    int_T numContStates;
    int_T numU;
    int_T numY;
    int_T numSampTimes;
    int_T numBlocks;
    int_T numBlockIO;
    int_T numBlockPrms;
    int_T numDwork;
    int_T numSFcnPrms;
    int_T numSFcns;
    int_T numIports;
    int_T numOports;
    int_T numNonSampZCs;
    int_T sysDirFeedThru;
    int_T rtwGenSfcn;
  } Sizes;

  /*
   * SpecialInfo:
   * The following substructure contains special information
   * related to other components that are dependent on RTW.
   */
  struct {
    const void *mappingInfo;
    void *xpcData;
  } SpecialInfo;

  /*
   * Timing:
   * The following substructure contains information regarding
   * the timing information for the model.
   */
  struct {
    time_T *t;
    time_T tStart;
    time_T tFinal;
    time_T stepSize;
    time_T timeOfLastOutput;
    void *timingData;
    real_T *varNextHitTimesList;
    SimTimeStep simTimeStep;
    int_T *sampleHits;
    int_T *perTaskSampleHits;
    boolean_T stopRequestedFlag;
    time_T *sampleTimes;
    time_T *offsetTimes;
    int_T *sampleTimeTaskIDPtr;
  } Timing;

  /*
   * Work:
   * The following substructure contains information regarding
   * the work vectors in the model.
   */
  struct {
    struct _ssDWorkRecord *dwork;
  } Work;
};

/* Simulation structure */
extern rtModel_Chirp0 *const rtM_Chirp0;

/* Macros for accessing real-time model data structure  */
#ifndef rtmGetBlkStateChangeFlag
# define rtmGetBlkStateChangeFlag(rtm) ((rtm)->ModelData.blkStateChange)
#endif

#ifndef rtmSetBlkStateChangeFlag
# define rtmSetBlkStateChangeFlag(rtm, val) ((rtm)->ModelData.blkStateChange = (val))
#endif

#ifndef rtmGetBlockIO
# define rtmGetBlockIO(rtm) ((rtm)->ModelData.blockIO)
#endif

#ifndef rtmSetBlockIO
# define rtmSetBlockIO(rtm, val) ((rtm)->ModelData.blockIO = (val))
#endif

#ifndef rtmGetCTaskTicks
# define rtmGetCTaskTicks(rtm) ((rtm)->Timing.cTaskTicks)
#endif

#ifndef rtmSetCTaskTicks
# define rtmSetCTaskTicks(rtm, val) ((rtm)->Timing.cTaskTicks = (val))
#endif

#ifndef rtmGetChecksums
# define rtmGetChecksums(rtm) ((rtm)->Sizes.checksums)
#endif

#ifndef rtmSetChecksums
# define rtmSetChecksums(rtm, val) ((rtm)->Sizes.checksums = (val))
#endif

#ifndef rtmGetClockTick
# define rtmGetClockTick(rtm) ((rtm)->Timing.clockTick)
#endif

#ifndef rtmSetClockTick
# define rtmSetClockTick(rtm, val) ((rtm)->Timing.clockTick = (val))
#endif

#ifndef rtmGetConstBlockIO
# define rtmGetConstBlockIO(rtm) ((rtm)->ModelData.constBlockIO)
#endif

#ifndef rtmSetConstBlockIO
# define rtmSetConstBlockIO(rtm, val) ((rtm)->ModelData.constBlockIO = (val))
#endif

#ifndef rtmGetContStateDisabled
# define rtmGetContStateDisabled(rtm) ((rtm)->ModelData.contStateDisabled)
#endif

#ifndef rtmSetContStateDisabled
# define rtmSetContStateDisabled(rtm, val) ((rtm)->ModelData.contStateDisabled = (val))
#endif

#ifndef rtmGetContStates
# define rtmGetContStates(rtm) ((rtm)->ModelData.contStates)
#endif

#ifndef rtmSetContStates
# define rtmSetContStates(rtm, val) ((rtm)->ModelData.contStates = (val))
#endif

#ifndef rtmGetDefaultParam
# define rtmGetDefaultParam(rtm) ((rtm)->ModelData.defaultParam)
#endif

#ifndef rtmSetDefaultParam
# define rtmSetDefaultParam(rtm, val) ((rtm)->ModelData.defaultParam = (val))
#endif

#ifndef rtmGetDerivCacheNeedsReset
# define rtmGetDerivCacheNeedsReset(rtm) ((rtm)->ModelData.derivCacheNeedsReset)
#endif

#ifndef rtmSetDerivCacheNeedsReset
# define rtmSetDerivCacheNeedsReset(rtm, val) ((rtm)->ModelData.derivCacheNeedsReset = (val))
#endif

#ifndef rtmGetDirectFeedThrough
# define rtmGetDirectFeedThrough(rtm) ((rtm)->Sizes.sysDirFeedThru)
#endif

#ifndef rtmSetDirectFeedThrough
# define rtmSetDirectFeedThrough(rtm, val) ((rtm)->Sizes.sysDirFeedThru = (val))
#endif

#ifndef rtmGetDiscStates
# define rtmGetDiscStates(rtm) ((rtm)->ModelData.discStates)
#endif

#ifndef rtmSetDiscStates
# define rtmSetDiscStates(rtm, val) ((rtm)->ModelData.discStates = (val))
#endif

#ifndef rtmGetErrorStatusFlag
# define rtmGetErrorStatusFlag(rtm) ((rtm)->errorStatus)
#endif

#ifndef rtmSetErrorStatusFlag
# define rtmSetErrorStatusFlag(rtm, val) ((rtm)->errorStatus = (val))
#endif

#ifndef rtmGetFirstInitCondFlag
# define rtmGetFirstInitCondFlag(rtm) ((rtm)->Timing.firstInitCondFlag)
#endif

#ifndef rtmSetFirstInitCondFlag
# define rtmSetFirstInitCondFlag(rtm, val) ((rtm)->Timing.firstInitCondFlag = (val))
#endif

#ifndef rtmGetModelMappingInfo
# define rtmGetModelMappingInfo(rtm) ((rtm)->SpecialInfo.mappingInfo)
#endif

#ifndef rtmSetModelMappingInfo
# define rtmSetModelMappingInfo(rtm, val) ((rtm)->SpecialInfo.mappingInfo = (val))
#endif

#ifndef rtmGetModelName
# define rtmGetModelName(rtm) ((rtm)->modelName)
#endif

#ifndef rtmSetModelName
# define rtmSetModelName(rtm, val) ((rtm)->modelName = (val))
#endif

#ifndef rtmGetNTaskTicks
# define rtmGetNTaskTicks(rtm) ((rtm)->Timing.nTaskTicks)
#endif

#ifndef rtmSetNTaskTicks
# define rtmSetNTaskTicks(rtm, val) ((rtm)->Timing.nTaskTicks = (val))
#endif

#ifndef rtmGetNonsampledZCs
# define rtmGetNonsampledZCs(rtm) ((rtm)->ModelData.nonsampledZCs)
#endif

#ifndef rtmSetNonsampledZCs
# define rtmSetNonsampledZCs(rtm, val) ((rtm)->ModelData.nonsampledZCs = (val))
#endif

#ifndef rtmGetNumBlockIO
# define rtmGetNumBlockIO(rtm) ((rtm)->Sizes.numBlockIO)
#endif

#ifndef rtmSetNumBlockIO
# define rtmSetNumBlockIO(rtm, val) ((rtm)->Sizes.numBlockIO = (val))
#endif

#ifndef rtmGetNumBlockParams
# define rtmGetNumBlockParams(rtm) ((rtm)->Sizes.numBlockPrms)
#endif

#ifndef rtmSetNumBlockParams
# define rtmSetNumBlockParams(rtm, val) ((rtm)->Sizes.numBlockPrms = (val))
#endif

#ifndef rtmGetNumBlocks
# define rtmGetNumBlocks(rtm) ((rtm)->Sizes.numBlocks)
#endif

#ifndef rtmSetNumBlocks
# define rtmSetNumBlocks(rtm, val) ((rtm)->Sizes.numBlocks = (val))
#endif

#ifndef rtmGetNumContStates
# define rtmGetNumContStates(rtm) ((rtm)->Sizes.numContStates)
#endif

#ifndef rtmSetNumContStates
# define rtmSetNumContStates(rtm, val) ((rtm)->Sizes.numContStates = (val))
#endif

#ifndef rtmGetNumDWork
# define rtmGetNumDWork(rtm) ((rtm)->Sizes.numDwork)
#endif

#ifndef rtmSetNumDWork
# define rtmSetNumDWork(rtm, val) ((rtm)->Sizes.numDwork = (val))
#endif

#ifndef rtmGetNumInputPorts
# define rtmGetNumInputPorts(rtm) ((rtm)->Sizes.numIports)
#endif

#ifndef rtmSetNumInputPorts
# define rtmSetNumInputPorts(rtm, val) ((rtm)->Sizes.numIports = (val))
#endif

#ifndef rtmGetNumNonSampledZCs
# define rtmGetNumNonSampledZCs(rtm) ((rtm)->Sizes.numNonSampZCs)
#endif

#ifndef rtmSetNumNonSampledZCs
# define rtmSetNumNonSampledZCs(rtm, val) ((rtm)->Sizes.numNonSampZCs = (val))
#endif

#ifndef rtmGetNumOutputPorts
# define rtmGetNumOutputPorts(rtm) ((rtm)->Sizes.numOports)
#endif

#ifndef rtmSetNumOutputPorts
# define rtmSetNumOutputPorts(rtm, val) ((rtm)->Sizes.numOports = (val))
#endif

#ifndef rtmGetNumSFcnParams
# define rtmGetNumSFcnParams(rtm) ((rtm)->Sizes.numSFcnPrms)
#endif

#ifndef rtmSetNumSFcnParams
# define rtmSetNumSFcnParams(rtm, val) ((rtm)->Sizes.numSFcnPrms = (val))
#endif

#ifndef rtmGetNumSFunctions
# define rtmGetNumSFunctions(rtm) ((rtm)->Sizes.numSFcns)
#endif

#ifndef rtmSetNumSFunctions
# define rtmSetNumSFunctions(rtm, val) ((rtm)->Sizes.numSFcns = (val))
#endif

#ifndef rtmGetNumSampleTimes
# define rtmGetNumSampleTimes(rtm) ((rtm)->Sizes.numSampTimes)
#endif

#ifndef rtmSetNumSampleTimes
# define rtmSetNumSampleTimes(rtm, val) ((rtm)->Sizes.numSampTimes = (val))
#endif

#ifndef rtmGetNumU
# define rtmGetNumU(rtm) ((rtm)->Sizes.numU)
#endif

#ifndef rtmSetNumU
# define rtmSetNumU(rtm, val) ((rtm)->Sizes.numU = (val))
#endif

#ifndef rtmGetNumY
# define rtmGetNumY(rtm) ((rtm)->Sizes.numY)

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩一区二区在线观看视频 | 久久综合九色综合97婷婷| 国产精品456| 亚洲h动漫在线| 日本一区二区在线不卡| 日本高清免费不卡视频| 国产ts人妖一区二区| 青青草伊人久久| 亚洲一区二区不卡免费| 国产精品毛片久久久久久久| 欧美精品一区二区在线观看| 欧美日韩国产欧美日美国产精品| 成人动漫一区二区三区| 国产一区二区美女诱惑| 五月天一区二区| 亚洲永久免费av| 国产精品久久久久影院亚瑟| 久久精品亚洲精品国产欧美kt∨| 欧美日韩国产一级片| 国产91富婆露脸刺激对白| 天天综合天天做天天综合| 中文字幕亚洲成人| 久久久99久久精品欧美| www.亚洲精品| 久久99精品久久只有精品| 五月婷婷久久丁香| 亚洲一二三四区不卡| 国产拍揄自揄精品视频麻豆| 91精品国产入口在线| 欧美精品 国产精品| 欧美sm极限捆绑bd| 久久久国产精品麻豆| 国产日产欧美一区| 国产婷婷精品av在线| 国产拍揄自揄精品视频麻豆| 欧美激情一区二区三区| 国产精品久久久久永久免费观看 | 亚洲美女屁股眼交| 亚洲精品欧美激情| 亚洲一区国产视频| 天堂午夜影视日韩欧美一区二区| 亚洲福中文字幕伊人影院| 亚洲高清一区二区三区| 亚洲伊人伊色伊影伊综合网| 亚洲国产成人av| 日产欧产美韩系列久久99| 久久9热精品视频| 日韩av在线免费观看不卡| 欧美aaaaa成人免费观看视频| 另类中文字幕网| 韩国精品在线观看| 国产成人久久精品77777最新版本 国产成人鲁色资源国产91色综 | 99国产精品久久久久久久久久| 成人开心网精品视频| 欧美亚男人的天堂| 欧美刺激脚交jootjob| 国产精品人妖ts系列视频| 亚洲乱码精品一二三四区日韩在线| 一二三区精品视频| 国产一区二区三区蝌蚪| 欧美特级限制片免费在线观看| 在线不卡中文字幕播放| 国产婷婷色一区二区三区 | 免费观看在线综合色| 国产精品一品二品| 欧洲人成人精品| 久久综合久久综合九色| 一区二区三区小说| 精品一区二区成人精品| 色先锋资源久久综合| 精品国产99国产精品| 成人欧美一区二区三区视频网页| 天堂蜜桃一区二区三区| 成人免费看黄yyy456| 欧洲另类一二三四区| 欧美精品一区二区在线播放| 亚洲欧美在线视频| 亚洲夂夂婷婷色拍ww47 | 亚洲自拍偷拍九九九| 国产一区二区三区四区五区入口| 91成人免费在线| 亚洲国产精品成人综合色在线婷婷| 午夜电影一区二区| 色哟哟国产精品| 国产精品白丝在线| 国产一区二区在线电影| 欧美日韩精品欧美日韩精品一 | 精品国产乱码久久久久久久久| 亚洲免费高清视频在线| 粉嫩aⅴ一区二区三区四区| 日韩视频不卡中文| 青青草国产成人99久久| 欧美美女网站色| 亚洲第一狼人社区| 欧洲人成人精品| 亚洲男同1069视频| 成人久久久精品乱码一区二区三区| 日韩一区二区免费视频| 亚洲一卡二卡三卡四卡五卡| 国产成人aaa| 欧美成人激情免费网| 亚洲国产精品一区二区久久恐怖片| 国产91色综合久久免费分享| 日本一区二区视频在线观看| 国产精品中文字幕一区二区三区| 日韩欧美一级片| 美洲天堂一区二卡三卡四卡视频| 欧美久久久久久蜜桃| 日本不卡一区二区三区高清视频| 欧美日韩黄视频| 奇米一区二区三区av| 日韩美女视频一区二区在线观看| 久久99久久精品欧美| 欧美本精品男人aⅴ天堂| 久99久精品视频免费观看| 欧美精品一区二| 成人午夜视频网站| 国产精品国产三级国产| 色诱视频网站一区| 天天色综合成人网| 欧美一卡在线观看| 国产一区三区三区| 中文一区二区在线观看| 99久久婷婷国产| 亚洲高清在线精品| 久久日一线二线三线suv| 成人美女视频在线观看| 亚洲自拍偷拍图区| 精品对白一区国产伦| 成人国产在线观看| 丝袜a∨在线一区二区三区不卡| 日韩欧美一二区| 国产麻豆视频一区二区| 亚洲欧美日韩综合aⅴ视频| 欧美性生活久久| 免费看日韩精品| 国产视频一区二区三区在线观看| 99免费精品视频| 日韩精品午夜视频| 精品久久一二三区| www.日韩av| 免费成人av在线| 国产精品三级久久久久三级| 欧美精品亚洲二区| 国产成人久久精品77777最新版本| 一区二区三区四区中文字幕| 日韩欧美一二三区| 99久久久无码国产精品| 首页综合国产亚洲丝袜| 国产精品国产三级国产专播品爱网 | 成人av在线影院| 日韩影院免费视频| 国产精品色婷婷久久58| 日韩欧美自拍偷拍| 色哟哟一区二区在线观看| 精品影视av免费| 亚洲成av人片一区二区| 国产精品二三区| 亚洲精品一区二区三区蜜桃下载| 色噜噜狠狠色综合中国| 国产69精品久久99不卡| 日本va欧美va瓶| 亚洲成人动漫精品| 亚洲精品综合在线| 国产精品丝袜久久久久久app| 日韩欧美黄色影院| 欧美日韩亚洲不卡| av激情亚洲男人天堂| 国产成人午夜精品影院观看视频| 日本成人在线电影网| 五月婷婷激情综合| 香蕉加勒比综合久久| 一区二区三区资源| 最新热久久免费视频| 国产女同互慰高潮91漫画| 精品国产在天天线2019| 日韩欧美中文字幕制服| 欧美一区二区三区喷汁尤物| 欧美日韩国产精选| 精品视频1区2区| 欧美日韩三级在线| 欧美日韩一级黄| 欧美精品久久99久久在免费线| 91福利精品视频| 欧美色手机在线观看| 欧美色综合网站| 7777精品伊人久久久大香线蕉完整版| 日本韩国欧美一区| 欧美精品xxxxbbbb| 日韩三级在线免费观看| 91精品国产综合久久香蕉的特点| 欧美性视频一区二区三区| 欧美在线啊v一区| 欧美日韩久久不卡| 日韩精品一区二区三区视频| 精品国产一二三区| 久久精品一二三| 国产精品护士白丝一区av| 一区二区三区影院| 美女视频一区在线观看|