How do I convert a value from a cell array into an integer?
이전 댓글 표시
My problem is when I read one cell from table, for example 5, I need to convert this in integer value.
I try cell2mat function, but this function converts in matrix form and when I want to multiply it, it gets matrix but I only need a scaler:
d=5 (from the table)
e=cell2mat(d)
f=e*1 there i don't get 5, I get 53.
That is a problem for me.
댓글 수: 1
David Young
2011년 3월 2일
Please could you show a few lines of code that illustrate the problem? It should be possible to cut and paste the code from your question into MATLAB and replicate the result.
채택된 답변
추가 답변 (1개)
Andreas Goser
2011년 3월 2일
In MATLAB, also a scalar is a matrix - a 1x1 matrix.
In MATLAB the default data type is DOUBLE - so even if you assign
d=5;
the internal representation will not be exact 5. But you can work with integers data types see e.g. UINT16.
카테고리
도움말 센터 및 File Exchange에서 Data Type Conversion에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!