是Matlab里面要用的一个函数但是我不知道怎么定义它
matlab中函数的定义方式如下:
function output= mstg(input) % 根据函数功能编写由input求出output的过程 output = input;
关键在于根据需求编写mstg函数的功能。