[A,b] = equationsT​oMatrix(eq​ns,vars), large amount of vars

1 次查看(过去 30 天)
I want to use the function
[A,b] = equationsToMatrix(eqns,vars)
Where vars is [A1, A2, A3, A4, ... An], is there a way to do this automatically without typing out every variable up to An?

采纳的回答

Star Strider
Star Strider 2014-9-1
I would make ‘A’ a vector (or matrix). Then:
A = [A1 A2 ... An];
You can pass it simply as ‘A’. You can recover its elements as necessary as A(1)...A(n) The exact assignments vary if ‘A’ is a matrix instead of a vector.
I can’t be more specific than that with what you have presented in your Question.
  4 个评论

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Characters and Strings 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by