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 つの関数ハンドルを乗算し、結果として関数ハンドルを取得する必要があります。例:
u = @(x) x + 2; v = @(x) 2*x + 1; y = u * g;
これを行う方法?
解決策は
y = @(x)( u(x).*v(x) );
私は他の方法を知りません。