필터 지우기
필터 지우기

Standart deviation between two matrix

조회 수: 1 (최근 30일)
Jhon Dukester
Jhon Dukester 2014년 2월 8일
댓글: Wayne King 2014년 2월 8일
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

채택된 답변

Wayne King
Wayne King 2014년 2월 8일
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)
  댓글 수: 2
Jhon Dukester
Jhon Dukester 2014년 2월 8일
편집: Jhon Dukester 2014년 2월 8일
I would like to compute the std between column one of Matrix A and column one of matrix B.
Than, std between column two of Matrix A and colum one of matrix B.
Than, std between column 3 of Matrix A and colum one of matrix B.
Is it possible?
Thank you
Wayne King
Wayne King 2014년 2월 8일
You have to specify what you mean by std between the columns, the std of the difference, or the sum, or the product?

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 GPU Computing에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by