Fake Name Johnson - MATLAB Central
photo

Fake Name Johnson


Last seen: 10개월 전 2021년부터 활동

Followers: 0   Following: 0

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

통계

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

순위
147,809
of 297,420

평판
0

참여
0 질문
2 답변

답변 채택
0.00%

획득한 표
0

  • First Answer

배지 보기

Feeds

보기 기준

답변 있음
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 ...

10개월 전 | 0

답변 있음
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...

거의 4년 전 | 0

Go to top of page