photo

Gareth Lee


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

Followers: 0   Following: 0

消息

统计学

All
MATLAB Answers

0 个提问
7 个回答

File Exchange

2 文件

Cody

4 个问题
1832 个答案

排名
4,469
of 297,503

声誉
12

贡献数
0 个提问
7 个回答

回答接受率
0.00%

收到投票数
2

排名
11,768 of 20,449

声誉
37

平均
0.00

贡献数
2 文件

下载次数
3

ALL TIME 下载次数
370

排名
57
of 159,017

贡献数
4 个问题
1832 个答案

评分
16,237

徽章数量
24

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Triathlon Participant
  • Scavenger Finisher
  • Knowledgeable Level 1
  • First Answer
  • Cody Challenge Master
  • Community Group Solver
  • Personal Best Downloads Level 1
  • First Review
  • First Submission
  • Project Euler I
  • Cody Problems in Japanese Master
  • Indexing II Master

查看徽章

Feeds

排序方式:

已回答
my question is can anyone improve my code to get the right answer?
It seems like to decide given year is whether or not a leap year. If you use the matlab 2016b, you can use the function 'leapyea...

8 years 前 | 0

已回答
hi, I have array a = [5 4 0;3 1 0;5 7 0], how can I replace the value in third column (a(:,3)) with the values in column 1 (a(:,1)) when a(:,1) > a(:,2) . I need obtain [5 3,5] in the third column
I think the description of your question is not clear, a(:,1)>a(:,2) is a column vector not all true. Is this your judge conditi...

8 years 前 | 1

已回答
Fitting experimental data to find a function
You can try polyfit function or other curve fit function, i.e. nlinfit or lsqcurvefit,to find proper equation. you also use cft...

8 years 前 | 0

| 已接受

已回答
Loop backwards and select subset of rows that meet criteria
if you want to use loop, it is showed below: tindex = find(A(:,1)==t); for j = tindex:-1:2 if(A(j,1)-A(j-1,1)==1)...

8 years 前 | 1

| 已接受

已回答
Replace rows with NaN only if there are more than two continous zero values in the same column
First, you can find the column with continous zeros(more than two), then find the index for replacement with nan. for example:...

8 years 前 | 0

已回答
Loop backwards and select subset of rows that meet criteria
you can solve it without loop, e.g B = find(diff(A(1:find(A(:,1)==t),1))~=1); result = A(B(end)+1:find(A(:,1)==t)-1,:);

8 years 前 | 0

已回答
Can't find AC or DC source on Simulink
You can't find it if you search it in simulink start page. You can open a blank simulink file, then you can open the simulink li...

8 years 前 | 0