MATLAB: Standart deviation between two matrix

standart deviation...

Hi,
I have a matrix A 100*6 and and a matrix B 100*1.
I would like to compute de standart deviation between each columns of Matrix A with the matrix B.
Thank you

Best Answer

What do you mean "between two matrix"
std() on a matrix returns the standard deviation of the columns
A = randn(100,6);
std(A)
B = randn(100,1);
std(B)