01-11 00:00
Recent Posts
Recent Comments
관리 메뉴

너와나의 관심사

Matlab 교육정리 본문

카테고리 없음

Matlab 교육정리

벤치마킹 2013. 1. 23. 09:36

 실용DSP와 필터 설계 교육과정


www.codeforge.com

www.pudn.com



tip ) 

pdf 문서 관련 정리된 site 이다 

http://www.pdfsearchengine.org/  



1:2:10

start:from:to:end


x3(1,:) 1행 all 을 보여라 


sin(t)  <-->  asin(t)

cos(t)  <-->  acos(t)

tan(t)  <-->  atan(t)


abs(x)

sqrt(x)

exp(x)

log10(x)

log(x) -> loge(x)


abs(x)

angle(x)

sum(x) = sigma x -> x[1] + x[2]+ ....

mean(x)

std(x) -> 표준 편차 standard deviation 

std(x)^2 -> variance 분산


min(x)

max(x)


floor(x) 반올림 

ceil(x)  올림 

round(x) 버림 


zeros(1,100) 0으로 초기화

zeros(100,1)

zeros(10,10)


ones(1,100) 1로 초기화

ones(100,1)

ones(10,10)

Comments