スカラー出力を持つ行列関数があり、これを行列の要素の 1 つの関数としてプロットしたいと考えています。正確な関数は重要ではないので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.
これは簡単だと思います。グーグルが明らかにしていないトリックがあります。