필터 지우기
필터 지우기

How to find variance of different score group

조회 수: 1 (최근 30일)
Jimmy
Jimmy 2014년 2월 24일
답변: Image Analyst 2014년 2월 24일
I have four different score groups to be analysed and I am required to find the variance of each group. I need to know what function to be used in order for me to get the variance for each group.
Thank you in advance.

답변 (1개)

Image Analyst
Image Analyst 2014년 2월 24일
Did you try to look up variance in the help? Did you stumble across the var() function?
var1 = var(group1);
var2 = var(group2);
var3 = var(group3);
var4 = var(group4);

카테고리

Help CenterFile Exchange에서 Dimensionality Reduction and Feature Extraction에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by