What Is the Meaning of This Syntax?

9 views (last 30 days)
Rightia Rollmann
Rightia Rollmann on 27 Mar 2017
Edited: Matt J on 27 Mar 2017
What is the meaning of this syntax:
.'*
for example:
A = [1 4 2 5 6;
2 3 4 5 6];
W = [2;
3];
B = W.'*A

Accepted Answer

Matt J
Matt J on 27 Mar 2017
Edited: Matt J on 27 Mar 2017
W.' is the tranpose of W, so the whole thing, B=W.'*A, means multiply the transpose of W with A.

More Answers (0)

Categories

Find more on Functions in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!