Fake Name Johnson
Followers: 0 Following: 0
I created this account only because this website was being broken. I needed a way to troubleshoot.
統計
MATLAB Answers
0 質問
2 回答
ランク
of 153,872
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
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 ...
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 ...
6ヶ月 前 | 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...
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...
3年以上 前 | 0