Borrar filtros
Borrar filtros

Basic opeation in matlab

2 visualizaciones (últimos 30 días)
iliya
iliya el 10 de Jun. de 2013
Hello i am very green in matlab SO sorry for simple (stupid) question.
what the difference between next command
y = input'*H(wCode,:);%H is a Matrix of NxN,
y = input*H(wCode,:);
from what i understated it takes a certain row of matrix and multiply by input vector but i cant figure out what this symbol ' dose.

Respuestas (2)

Daniel Shub
Daniel Shub el 10 de Jun. de 2013
In this case the ' is a shorthand way of calling the ctranspose function. You may also want to look at .' which is shorthand for calling the transpose function.

Jan
Jan el 10 de Jun. de 2013
You can simply try it in the command window:
in = 1:10;
in
in'
I've avoided the name "input", because this is an important Matlab command and overwritng it can lead to unexpected results.

Categorías

Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.

Etiquetas

Aún no se han introducido etiquetas.

Community Treasure Hunt

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

Start Hunting!

Translated by