Finding the partial derivatives of a vector containing polynomials
이전 댓글 표시
I have a vector that is 4x1size and contains 4 polynomials with 4 variables each (w,x,y,z). I want to find the partial derivatives wrt each polynomial and then store it as a matrix (4x4 matrix).
So what I have is molflow = [ fA; fB; fC; fD ] (4x1 vector). Want to find partial derivatives wrt w,x,y,z for fA, fB, fC, fD and store it as a 4x4 matrix. My idea is to multiply 'molflow' with 'partial derivative vector' size 1x4 in order to obtain 4x4 matrix.
This is done easily mathematically. Is this possible on matlab? Are there any alternative solutions?
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Polynomials에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!