Jang geun Choi - MATLAB Central
photo

Jang geun Choi


Pusan national university

Last seen: 2 years ago Active since 2014

Followers: 2   Following: 0

Message

I'm a student studying ocean science using matlab.

Statistics

All
CodyFile ExchangeMATLAB AnswersFrom 12/14 to 03/25Use left and right arrows to move selectionFrom 12/14Use left and right arrows to move left selectionTo 03/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

0 Questions
4 Answers

File Exchange

14 Files

Cody

28 Problems
841 Solutions

RANK
4,727
of 297,613

REPUTATION
10

CONTRIBUTIONS
0 Questions
4 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
3

RANK
1,867 of 20,457

REPUTATION
979

AVERAGE RATING
5.00

CONTRIBUTIONS
14 Files

DOWNLOADS
28

ALL TIME DOWNLOADS
2817

RANK
175
of 159,263

CONTRIBUTIONS
28 Problems
841 Solutions

SCORE
7,540

NUMBER OF BADGES
8

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • 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

View badges

Feeds

View by

Answered
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?

8 years ago | 0

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

8 years ago | 2

| accepted

Answered
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)...

8 years ago | 1

Answered
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 ...

8 years ago | 0