photo

Imanol Isasa


Last seen: 2 years ago Active since 2020

Followers: 0   Following: 0

Statistics

MATLAB Answers

1 Question
3 Answers

RANK
12,506
of 297,457

REPUTATION
4

CONTRIBUTIONS
1 Question
3 Answers

ANSWER ACCEPTANCE
100.0%

VOTES RECEIVED
0

RANK
 of 20,438

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 158,938

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Thankful Level 1
  • Knowledgeable Level 1
  • First Answer

View badges

Feeds

View by

Question


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 ago | 2 answers | 0

2

answers

Answered
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 ago | 0

Answered
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 ago | 0

| accepted

Answered
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 ago | 0