主题:关于结构体
在c中的结构体,在matlab中如何实现,比如c中
[b]typedef struct tagBranch
{
int number;
char type;
int nfrom;
int nto;
float value;
int ncfrom;
int ncto;
}BRANCH;[/b]
在matlab中怎么实现,谢谢~~
[em1]
[b]typedef struct tagBranch
{
int number;
char type;
int nfrom;
int nto;
float value;
int ncfrom;
int ncto;
}BRANCH;[/b]
在matlab中怎么实现,谢谢~~
[em1]