photo

Imanol Isasa


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

Followers: 0   Following: 0

统计学

MATLAB Answers

1 个提问
3 个回答

排名
10,543
of 300,251

声誉
4

贡献数
1 个提问
3 个回答

回答接受率
100.0%

收到投票数
0

排名
 of 20,898

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 167,837

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Thankful Level 1
  • Knowledgeable Level 1
  • First Answer

查看徽章

Feeds

排序方式:

提问


How can I crop a set of non-binary images automatically depending on the size and position of each image?
I have a dataset of more than 1000 images. When I load them into Matlab (R2021b), they all are the same size, but the actual ima...

3 years 前 | 2 个回答 | 0

2

个回答

已回答
How to change color in plot
Hi, You can specify any color by using RGB equivalent vectors (values from 0 to 1) such as: [0.5 0.5 0.5] https://es.mathworks...

5 years 前 | 0

已回答
Creating a variable to from data in a matrix
Hi, you can select the first column starting from the third row doing this: selection = matrix(3:end,1);

5 years 前 | 0

| 已接受

已回答
how can i ask user to input random numbers and automatically turn it into vector?
Hi, I am not an expert in this but you can try doing just this: for i=1:4 v(i)=input("Type a random number: "); end Yo...

5 years 前 | 0