Expressing a matrix with parameters and letters
21 次查看(过去 30 天)
显示 更早的评论
hi
in my homework it is asked to solve B*b. The solution should however contain the three variables F1, F2 and F3 that are in b.
How can I write it? They just suggest to use the "sym" command...
0 个评论
采纳的回答
Ajay Pattassery
2019-11-14
Define the variables F1, F2, and F3 as symbolic variables.
syms F1, F2, F3
B = inv(A);
b = [0 F1 0 F2 0 F3 0 0 0 ]’;
x = B*b;
更多回答(1 个)
Jesus Narvaez
2023-7-3
how to make a matrix that has a size of 20x20 but has parameters from -10 to 10 on both the x and y componets (horizontal and vertical)
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Equation Solving 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!