photo

Mendi


ta univ.

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

Followers: 0   Following: 0

消息

统计学

All
MATLAB Answers

0 个提问
5 个回答

Cody

0 个问题
6 个答案

排名
21,702
of 300,068

声誉
2

贡献数
0 个提问
5 个回答

回答接受率
0.00%

收到投票数
1

排名
 of 20,863

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名
50,158
of 167,211

贡献数
0 个问题
6 个答案

评分
71

徽章数量
1

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Solver
  • Explorer
  • First Review
  • First Answer

查看徽章

Feeds

排序方式:

已回答
How to pick a value according to its probability
The fastest one (100ns-200ns): function [idx] = get_random_choice(p) % Random choice with probability % Example: get_rand...

4 years 前 | 1

已回答
How to create a checkerboard matrix without inbuilt function.
It is more natural to use modulus on meshgrid: [iX,iY] = meshgrid(1:8,1:8); Mask=mod(iX+iY,2);

5 years 前 | 0

已回答
how to random -1 and 1?
randsample([-1, 1],8,true)

5 years 前 | 0

已回答
How to remove labels and grey space between subplots so that the subplots fill-up the entire figure
A cleaner version: tlo = tiledlayout(2,2,'TileSpacing','none','Padding','none'); [X,Y,Z] = peaks(20); nexttile, imagesc(Z) ...

6 years 前 | 0

已回答
How can I fill a vector with another one with different size?
To find the error source run: length(xpath(1:1:end)) %=100 length(fullPath(1:2:end)) %=101 So change the code to: ...

10 years 前 | 0