>> x = -100:100;
>> y = -100:100;
>> plot(x,y)
>> x = 0:100;
>> y = sqrt(x);
>> plot(x,y)
아래는 y = sqrt(x); 그래프
>> x = -100:100;
>> y = power(x,2);
>> plot(x,y)
'컴퓨터 과학 & 영상처리 관련 > MATLAB' 카테고리의 다른 글
120510 importing-data-from-files-matlab-video (0) | 2012.05.11 |
---|---|
matlab y축 글자 90도 회전 없애기 (0) | 2012.05.09 |
120429 WritingAMATLABProgram (0) | 2012.04.29 |
120429 WorkingInTheDevelopmentEnvironment (0) | 2012.04.29 |
getting started with MATLAB (0) | 2012.03.27 |