Stuck with symbolic variables
Ältere Kommentare anzeigen
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]
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Assumptions finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!