1

Vectors

1.1    INTRODUCTION

In this text we present vectors with boldfaced lowercase Latin letters, in columnar format. Matrices are presented with boldfaced capital Latin letters and numbers with lowercase Latin letters. For example, for three different types of three element vectors, we write

x=[ 12.32];y=[ y1y2y3];z=[ 2.334+j5j]

(1.1)

The elements y1, y2, and y3 are constants. For any one of the above vectors, we could also write its equivalent form, for example, xT=[ 12.32 ] or xT=(1, 2.3, −2), where the letter T stands for the word transpose. The MATLAB® column vector format is written in the command window as follows:

>>x = [1 2.3 −2]’;%column vector, accent indicates transpose;

>>x = [1; 2.3; −2];%column ...

Get Adaptive Filtering now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.