MKN - MATLAB Central
photo

MKN


2013 年からアクティブ

Followers: 0   Following: 0

Professional Interests: Signal Processing

統計

All
CodyMATLAB AnswersFrom 06/13 to 03/25Use left and right arrows to move selectionFrom 06/13Use 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%
MATLAB Answers

6 質問
1 回答

Cody

1 問題
94 解答

ランク
27,649
of 297,738

評判
1

コントリビューション
6 質問
1 回答

回答採用率
100.0%

獲得投票数
1

ランク
 of 20,469

評判
N/A

平均評価
0.00

コントリビューション
0 ファイル

ダウンロード
0

ALL TIME ダウンロード
0

ランク
6,363
of 159,472

コントリビューション
1 問題
94 解答

スコア
995

バッジ数
6

コントリビューション
0 投稿

コントリビューション
0 パブリック チャネル

平均評価

コントリビューション
0 ハイライト

平均いいねの数

  • First Review
  • Thankful Level 3
  • First Answer
  • Quiz Master
  • Creator
  • Commenter
  • Promoter
  • Solver

バッジを表示

Feeds

表示方法

質問


Need help in analyzing image planes
% CODE 1 % Read RGB image x = imread('Lena.jpg'); rPlane = x(:,:,1); imshow(rPlane) % Displays Red Plane in Lena.jpg...

約10年 前 | 1 件の回答 | 0

1

回答

回答済み
Cell Arrays to string
cellData = {'Matlab','is','a','high','level','programming','language'}; % Cell array combinedString = []; for i ...

約10年 前 | 0

質問


Grayscale, monochrome, binary image in matlab
In Matlab, 1. An 8-bit gray scale image has pixel values ranging from 0 to 255. The pixel depth may vary (16-bit, 32-bit, etc...

約10年 前 | 1 件の回答 | 1

1

回答

質問


I have an array of length 256. It has either 0's and 1's of type uint8. I would like to concatenate it so that it occupies less memory and then recover the original array back. please check the eaxample
x = [1 0 1 1 1 0 0 1...........1] % uint8. length = 256. size = 256*8 = 2048 bytes xbin = 1011100...........1 % ...

約10年 前 | 2 件の回答 | 0

2

回答

質問


How to remove duplicates in an array
Ex: In the array x=[1 2 2 3 3 3 4 5], i want to eliminate all repeating elements (2,3) and retain non-repeating elements (1,4,...

11年以上 前 | 3 件の回答 | 0

3

回答

質問


How to split letters in a word into an array
Ex: In the word *'HELLO'*, extract the letters *'H' 'E' 'L' 'L' 'O'*

11年以上 前 | 3 件の回答 | 0

3

回答