对于 strjoin 函数,如果相同的代码可以在 Matlab 和 Octave 上运行就好了。strjoin 的参数几乎相同。不同之处在于,在 Matlab 中它需要一个向量 [],而在 Octave 中它需要一个单元格 {}。除了检查“OCTAVE_VERSION”进行切换之外,还有什么更好的方法吗?
strjoin(["mat" "lab"]);
https://www.mathworks.com/help/matlab/ref/strjoin.html
strjoin({"oc" "tave"});
https://octave.sourceforge.io/octave/function/strjoin.html
OCTAVE_VERSION
https://docs.octave.org/v4.0.3/How-to-distinguish- Between-Octave-and-Matlab_003f.html