Symbolic substitution for multiple variables
조회 수: 211 (최근 30일)
이전 댓글 표시
Hi,
I wanted some explanation on the captioned. Say my N is a 6x6 matrix with 5 symbolic variables and I want to evaluate N at one go, for 5 different values of the variables. How do I do that using subs? Thank you.
댓글 수: 0
채택된 답변
Star Strider
2016년 12월 5일
A simplified example:
syms a b c d e
M = [a b c; d e b; e c a];
Ms = subs(M, {a b c d e}, {1 3 5 7 9});
Ms =
[ 1, 3, 5]
[ 7, 9, 3]
[ 9, 5, 1]
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Assumptions에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!