?? polar_rect_c.h
字號:
/*-----------------------------------------------------------------
File name: polar_rectangular_c.h
Description: this file included the type definition of structure
polar_rect, which is used to save the return value of the function.
The functon prototype statment is included in this file too.
-----------------------------------------------------------------*/
/*-----------------------------------------------------------------
structure definition:
-----------------------------------------------------------------*/
typedef struct
{ int ualfa; //ualfa=uout*cos(theta), Q15
int ubeta; //ubeta=uout*sin(theta), Q15
}polar_rect;
/*-----------------------------------------------------------------
function prototype statment
-----------------------------------------------------------------*/
extern void polar_rectangular(polar_rect *p, int uout, int costheta, int sintheta);
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -