I want to get 2d image from a sensor data.What matlab commands convert a dataset to images?

4 views (last 30 days)

Answers (1)

Stephan
Stephan on 7 Jul 2020
Edited: Stephan on 7 Jul 2020
A = rand(100,100)
imshow(A)
or
A = (randi(1500,100,100))-750
image(A)

Categories

Find more on Convert Image Type in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!