i have a data which is cell array
x_error=41 X 41 Cell
i want to create an image by using this cell array value is this possible

4 commentaires

rifat
rifat le 27 Mai 2014
can you provide a little more information about this cell array? What kind of data does each cell contain?
sazzad hossen
sazzad hossen le 27 Mai 2014
Dear Mr. Rifat,
the Cell array actually contains the value such as [0.00000, 0.02135, 1.20124, 0.1111111,.......] i want to get an image gray/binary image which show the high intensity when the cell value in high and low when the cell value is low. each point intensity value is changed according to the cell value.
or any type of graph that can represent the changes of value on a single plan
Jos (10584)
Jos (10584) le 27 Mai 2014
What does the contents of each cell look like? And what does it represent?
sazzad hossen
sazzad hossen le 27 Mai 2014
Daer Mr. Jos,
i attached my data file below could you please tell me how can i get an image or graph ( separate or a combined )

Connectez-vous pour commenter.

Réponses (1)

Image Analyst
Image Analyst le 27 Mai 2014

0 votes

To stitch together two images, each of which is inside a cell, do this:
wideImage = [ca{1}, ca{2}]; % Stitch together horizontally.
tallImage = [ca{1}; ca{2}]; % Stitch together vertically.
See the FAQ: http://matlab.wikia.com/wiki/FAQ#What_is_a_cell_array.3F for a good discussion of cell arrays.

1 commentaire

sazzad hossen
sazzad hossen le 27 Mai 2014
Modifié(e) : sazzad hossen le 27 Mai 2014
Dear Image Analyst,
Hope you are fine. Previously you helped me a lot, hope this time you also give me a good solution, as you give always.
my data file is attached here. how can i get e image or graph from this value. using combined or separately graph or image

Connectez-vous pour commenter.

Catégories

En savoir plus sur Convert Image Type dans Centre d'aide et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by