photo

Frances McBride


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

Followers: 0   Following: 0

统计学

All
MATLAB Answers

1 个提问
1 个回答

Cody

0 个问题
4 个答案

排名
86,965
of 300,124

声誉
0

贡献数
1 个提问
1 个回答

回答接受率
0.0%

收到投票数
0

排名
 of 20,879

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名
64,440
of 167,452

贡献数
0 个问题
4 个答案

评分
50

徽章数量
1

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • First Answer
  • Solver

查看徽章

Feeds

排序方式:

已回答
How to use a For loop to plot sine waves?
Since you did not include any errors that you are getting, I will come up with solutions based on some possible errors that you ...

4 years 前 | 0

提问


How to click points in a figure to generate a function/set of data?
I remember there being a function or plugin in MATLAB that allowed the user to click on points in a figure to generate a set of ...

4 years 前 | 1 个回答 | 0

1

个回答

已解决


Specific Element Count
Given a vector _v_ and a element _e_, return the number of occurrences of _e_ in _v_. Note: NaNs are equal and there may be n...

7 years 前

已解决


Getting logical indexes
This is a basic MATLAB operation. It is for instructional purposes. --- Logical indexing works like this. thresh = 4...

7 years 前

已解决


Find the largest value in the 3D matrix
Given a 3D matrix A, find the largest value. Example >> A = 1:9; >> A = reshape(A,[3 1 3]); >> islargest(A) a...

7 years 前

已解决


Check if number exists in vector
Return 1 if number _a_ exists in vector _b_ otherwise return 0. a = 3; b = [1,2,4]; Returns 0. a = 3; b = [1,...

7 years 前