필터 지우기
필터 지우기

What is the difference between input of cell array {[Hi]} and {'Hi'}

조회 수: 1 (최근 30일)
Lucrezia Cester
Lucrezia Cester 2020년 9월 8일
답변: Walter Roberson 2020년 9월 8일
As the title says,
I have a cell array which contains data in this format
{[Hi]}
but I want to turn it to {'Hi'} so that I can turn the data into a categorical format.
Any suggestions on how to do this?
  댓글 수: 5
Adam Danz
Adam Danz 2020년 9월 8일
편집: Adam Danz 2020년 9월 8일
" I want to turn it to {'Hi'} so that I can turn the data into a categorical format."
It sounds like the data are already categorical. For example,
c = categorical({'Hi'});
{c, 'Hi'}
% ans =
% 1×2 cell array
% {[Hi]} {'Hi'}
OMKARAM RAJESHWARA RAJU
OMKARAM RAJESHWARA RAJU 2020년 9월 8일
편집: OMKARAM RAJESHWARA RAJU 2020년 9월 8일
1. from the question: what is difference between {[ Hi ]} , { 'Hi' } ..?
{[ Hi ]} ==> this will produce an error called :::: unrecoginized function variable
instead you have to use :::: { [ 'Hi' ] }
there is no difference between A1 = {'Hi'} and A2 = {['Hi']}
both are 1 * 1 cell arrays
even interms of memory : both will occupy the same 112 bytes of overhead
(or in newest versions 108 bytes of overhead)
but the difference comes when we add next element
A3 = {'Hi' 'Fi'}
A4 = {['Hi' 'Fi']}
A3 is a cell array of size = 1 * 1 ==> {'HiFi'} ==> concatenation
A4 is a cell size = 1 * 2 ==> 'Hi' 'Fi' ==> 2 seperate cells
interms of memory: both have different memory allocation accordingly
2 . CATEGORICAL
the concept of categorical will come only when the input data type has multiple elements.
categorical is a data type that assigns values to a finite set of discrete categories, such as High, Med, and Low. These categories can have a mathematical ordering that you specify, such as High > Med > Low
please go through the documentation of categorical
hope your doubt is cleared...!

댓글을 달려면 로그인하십시오.

답변 (1개)

Walter Roberson
Walter Roberson 2020년 9월 8일
If you have something that is displaying as
{[Hi]}
then it is a cell array that contains categorical data. If all of the entries in the same cell are scalar categorical, then you can use cell2mat() to convert into an array of categorical. Or if that fails, then [NameOfCell{:}]

카테고리

Help CenterFile Exchange에서 Categorical Arrays에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by