Community Profile

photo

Jang geun Choi


Pusan national university

Last seen: 대략 1년 전 2014년부터 활동

Followers: 1   Following: 0

연락

I'm a student studying ocean science using matlab.

통계

All
  • Triathlon 2nd Place
  • Scavenger Finisher
  • Knowledgeable Level 1
  • First Answer
  • Likeable
  • Quiz Master
  • Personal Best Downloads Level 2
  • 5-Star Galaxy Level 5
  • First Submission
  • Famous
  • Puzzler
  • Creator

배지 보기

Feeds

보기 기준

답변 있음
Deriving X from X'X
n=2; k=3; X=rand(n,k); % make sample matrix X Xn=X'*X Is it right what you want?

7년 초과 전 | 0

답변 있음
Combining Color Images as one
Bimage = zeros(256, 256, 1, 'uint8'); Bimage(:, :, 3) = repmat(255:-1:0, 256, 1); Bimage=Bimage(:,:,3); image...

7년 초과 전 | 2

| 수락됨

답변 있음
Can MATLAB create a linear graph from polynomial graph?
x=0:0.2:2*pi; y=3*sin(x)+2*x+rand(size(x)); % example data % linear regression P=polyfit(x,y,1); y2=polyval(P,x)...

7년 초과 전 | 1

답변 있음
Error using * matrix dimensions must agree?
I think, if your 'y' is vary with two independent variables, x and t, you should make not one dimensional vector domain but two ...

7년 초과 전 | 0