Community Profile

photo

MKN


Active since 2013

Followers: 0   Following: 0

Professional Interests: Signal Processing

Statistics

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

View badges

Feeds

View by

Question


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...

9 years ago | 1 answer | 0

1

answer

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

9 years ago | 0

Question


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...

9 years ago | 1 answer | 1

1

answer

Question


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 % ...

9 years ago | 2 answers | 0

2

answers

Question


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 years ago | 3 answers | 0

3

answers

Question


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

11 years ago | 3 answers | 0

3

answers