Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
線形フィットとカラーバー スケールと共に 2 つの列間の相関係数が必要です。
これはあなたのハードウェアだと思いますので、Matlab の汎用関数を使用したソリューションを提供します。
>> x = sin(0:0.01:20); >> y = cos(0:0.01:20); >> R = corrcoef(x,y) R = 1.0000 0.0392 0.0392 1.0000 >> R = corrcoef(x,x) R = 1.0000 1.0000 1.0000 1.0000
次回は少し力を発揮できると思います。