필터 지우기
필터 지우기

How to use the std function for signal ????

조회 수: 2 (최근 30일)
afef
afef 2017년 3월 15일
댓글: Jan 2017년 3월 15일
I have to extract Standard deviantion of multi channel EEG and I dont know how to use the std function can anyone help me please Thanks.

채택된 답변

Jan
Jan 2017년 3월 15일
It depends on what you want to achieve:
  • If you want to get the standard deviation over the time and the "multi channel EEG" is recorded as [nTimeStep x nChannel] matrix:
SignalStd = std(Signal, 0, 1);
  • I the standard deviation between the channels is wanted:
SignalStd = std(Signal, 0, 2);
You see: A specific answer requires more specific details in the question.
  댓글 수: 3
afef
afef 2017년 3월 15일
please I want to ask you how can i use the function MEAN for my signal i dont know how to write the code.
Jan
Jan 2017년 3월 15일
Did you read doc mean already? It is equivalent to the std command, but without the 2nd input:
SignalMean = mean(Signal, 1);
SignalMean = mean(Signal, 2);

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 EEG/MEG/ECoG에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by