I keep getting an error?

조회 수: 2 (최근 30일)
Amanda
Amanda 2022년 11월 1일
답변: Star Strider 2022년 11월 1일
I am trying to take data that is stored in a cell and divide it but another variable but I keep getting and operator './' is not supported for operand of type 'cell'. I dont know how to fix this issue but for reffrence here is what i have writen so far.
  댓글 수: 1
David Hill
David Hill 2022년 11월 1일
Attach a sample of your data.

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

답변 (2개)

James Tursa
James Tursa 2022년 11월 1일
Generally, these types of problems are solved by extracting the contents of the cell instead of using the cell itself. E.g.,
C = {10,20,30}
C = 1×3 cell array
{[10]} {[20]} {[30]}
C{3} ./ C{1} % use curly braces to extract the content of the cell
ans = 3
C(3) ./ C(1) % this tries to divide the cell itself and generates an error
Operator './' is not supported for operands of type 'cell'.

Star Strider
Star Strider 2022년 11월 1일
It may be necessary to use the cell2mat function if the arrays are in a cell array. The existing cell array elements must be purely numeric of the same class, and must have consistent dimensions that allows for them to be concatenated.
Once they are in a matrix, you can work with them as array elements.

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by