What Is the Meaning of This Syntax?

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)

Tags

Asked:

on 27 Mar 2017

Edited:

on 27 Mar 2017

Community Treasure Hunt

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

Start Hunting!