photo

Ben McMahon


Last seen: 3 years 前 自 2021 起处于活动状态

Followers: 0   Following: 0

统计学

All
MATLAB Answers

1 个提问
3 个回答

Cody

0 个问题
1 个答案

排名
6,017
of 297,457

声誉
8

贡献数
1 个提问
3 个回答

回答接受率
100.0%

收到投票数
2

排名
 of 20,438

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名
93,474
of 158,938

贡献数
0 个问题
1 个答案

评分
20

徽章数量
1

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Knowledgeable Level 1
  • Thankful Level 1
  • First Answer
  • Solver

查看徽章

Feeds

排序方式:

已回答
Unrecognized function or variable 'x'. Error in circular (line 3) if x == 'C' Error in mainapp (line 7) circular;
Your issue is that you have not told MATLAB what x is. Your function circular as it is written above has no idea what x, even if...

3 years 前 | 0

已回答
How to generate iid Gaussian noise vector
For your particular example as your covariance is idenity and your mean 0, this is a mulitvariate standard normal distrbuiton: ...

3 years 前 | 1

已回答
Is there a way to compute average norm after a series of trials?
I am a bit confused by your question, as is not defined. If you want to run your algorithim for a set number of randomly genera...

3 years 前 | 1

| 已接受

提问


How can I read big-endian binary files with embedded coder?
I have a function in MATLAB that I am using to read some legacy binary files that use Big-endian format for bit ordering. It con...

3 years 前 | 1 个回答 | 0

1

个回答

已解决


Sum of diagonal of a square matrix
If x = [1 2 4; 3 4 5; 5 6 7] then y should be the sum of the diagonals of the matrix y = 1 + 4 + 7 = 12

4 years 前