主题:[讨论]matlab结构体实现
struct transtion
{
int br;
int c0;
int c1;
int next_state;
int cur_state;
}trellis[10][10];
上面是C语言中的一个结构体定义。请问这样的一个结构体在matlab中该如何实现?谢谢
{
int br;
int c0;
int c1;
int next_state;
int cur_state;
}trellis[10][10];
上面是C语言中的一个结构体定义。请问这样的一个结构体在matlab中该如何实现?谢谢