Stuck with symbolic variables

1 次查看(过去 30 天)
How to correctly assign symbolic values to the selected elements of an Array?
syms a b c
x = [a;b];
c([1 2]) = x;
% it returns
c = [ a, b]
I Need
c = [a;b] % should be a column vector, not row vector like above.
c can be for example 11 dimentional column vector. I just want to assign values in x to the selected rows of c. For ex. lets say 3rd and 7th row of c must be equal to a and b respectively.
Something like this is needed, here is another ex.
c = [1;2;3;2;5;3];
c(1st and 4th) = [a;b];
c =
[a;2;3;b;5;3]

采纳的回答

Birdman
Birdman 2018-7-13
You need to also convert your numerical array into symbolic so that things will be possible. For instance:
c=sym(c)
c([1 4])=x

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Number Theory 的更多信息

产品


版本

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by