比如把
a=x^2+y^2;(在Matlab中的公式)
转换成
a=pow(x,2)+pow(y,2);(在C语言中的公式)
而不用手工处理?因为我得到的Matlab公式特别的长……