photo

Zikobrelli


Last seen: 9 months 前 自 2013 起处于活动状态

Followers: 0   Following: 0

消息

统计学

All
MATLAB Answers

0 个提问
7 个回答

Cody

13 个问题
1533 个答案

排名
12,794
of 297,503

声誉
4

贡献数
0 个提问
7 个回答

回答接受率
0.00%

收到投票数
0

排名
 of 20,449

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名
78
of 159,017

贡献数
13 个问题
1533 个答案

评分
12,892

徽章数量
13

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Revival Level 1
  • Knowledgeable Level 1
  • Likeable
  • Famous
  • First Review
  • Quiz Master
  • First Answer
  • ASEE Challenge Master
  • Leader
  • Puzzler
  • Scholar
  • Commenter

查看徽章

Feeds

排序方式:

已回答
how to compute separate line 2 dimensional points
Given X and Y, this function will give you your 'w' and 'b' function [a b] = droite_reg(X,Y) % Linear fitting % Y = a +...

10 years 前 | 0

已回答
Finding indices of array that has a constraint
example: vector B=[1:10] Constraint: greater than 5 idx=find(B>5)% will give you the indices satisfying the constraint...

10 years 前 | 0

已回答
How do I calculate an inverse engine torque map from an engine torque map?
RPM=[500 1000 1500 2000]'; alpha_throttle=[0.1 0.2 0.4 0.8]; torque_map= [67 89 95 108 74 92 11...

10 years 前 | 0

已回答
cut figure I want to see
im not sure i understand what you're asking for but this might help plot(rand(1,10)) xlim([3 4]) ylim([0.7 0.8]) ...

10 years 前 | 0

已回答
Sum every i-th column in matrix seperately
Try sum(A(:,[1 4])) where A is your random matrix.The line above will give you the sums of column 1 and 4. ex: A=spiral(4...

11 years 前 | 0

| 已接受

已回答
display extra value in datacursor
Data cursor has a callback function that can be found like this: on your plot: 1)click on the data cursor 2)Right click on ...

11 years 前 | 0