Fake Name Johnson - MATLAB Central
photo

Fake Name Johnson


Last seen: 8 maanden ago Active since 2021

Followers: 0   Following: 0

I created this account only because this website was being broken. I needed a way to troubleshoot.

Statistics

MATLAB AnswersFrom 05/21 to 01/25Use left and right arrows to move selectionFrom 05/21Use left and right arrows to move left selectionTo 01/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%

RANK
244.091
of 296.331

REPUTATION
0

CONTRIBUTIONS
0 Questions
2 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
0

  • First Answer

View badges

Feeds

View by

Answered
How can I get the average color of a ROI (mask) ?
There are other ways to do this, but let's be simple. Assuming a single-channel logical mask: % an image (RGB, uint8) inpict ...

8 maanden ago | 0

Answered
How can I create a for loop that takes the number 500 and multiplies it by 1.1 every 7 steps (7,14,21,...), meaning that i want the answer as follows: 500.... 500*1.1....500*1.1*1.1....500*1.1*1.1*1.1 etc
Here's a start a = 500; k = 1.1; p = 0:5; s = 7; x = a*k.^p; x = repelem(x,s) just adjust p as needed to get the desire...

meer dan 3 jaar ago | 0

Go to top of page