photo

Jang geun Choi


Pusan national university

Last seen: 2 years 前 自 2014 起处于活动状态

Followers: 2   Following: 0

消息

I'm a student studying ocean science using matlab.

统计学

All
MATLAB Answers

0 个提问
4 个回答

File Exchange

14 文件

Cody

28 个问题
841 个答案

排名
5,111
of 299,852

声誉
10

贡献数
0 个提问
4 个回答

回答接受率
0.00%

收到投票数
3

排名
1,876 of 20,818

声誉
983

平均
5.00

贡献数
14 文件

下载次数
22

ALL TIME 下载次数
2850

排名
177
of 166,274

贡献数
28 个问题
841 个答案

评分
7,540

徽章数量
8

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

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

9 years 前 | 0

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

9 years 前 | 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)...

9 years 前 | 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 ...

9 years 前 | 0