我有一个带有标量输出的矩阵函数,我想将其绘制为矩阵元素之一的函数。确切的功能并不重要,所以我将使用det
我的示例:
>> fplot(det([x 0;0,1]),[0,1000])
Error using vertcat
CAT arguments dimensions are not consistent.
或者:
>> x=linspace(0,1000,1001);
>> plot(det([x,0;0,1]))
Error using vertcat
CAT arguments dimensions are not consistent.
我敢肯定这很简单,而且只有一个谷歌搜索没有揭示的技巧。