multiply to matrix with strings

1 view (last 30 days)
cfbcvbcvb
cfbcvbcvb on 6 May 2014
Answered: Andrei Bobrov on 6 May 2014
hi everyone
how to multiply a matrix like
a =
1 2 3 4
5 6 7 8
9 10 11 12
13 14 15 16
and
b =
(1*x)
(2+x)
(3*5x)
(4*x^2)
and answer shown with 'x'
  2 Comments
José-Luis
José-Luis on 6 May 2014
Please read the "Getting started" part of the documentation.
Azzi Abdelmalek
Azzi Abdelmalek on 6 May 2014
The question is not clear

Sign in to comment.

Answers (1)

Andrei Bobrov
Andrei Bobrov on 6 May 2014
syms x
b =[(1*x)
(2+x)
(3*5*x)
(4*x^2)];
a =[ 1 2 3 4
5 6 7 8
9 10 11 12
13 14 15 16];
out = a*b

Categories

Find more on Characters and Strings in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!