I keep getting an error?
3 次查看(过去 30 天)
显示 更早的评论
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.
回答(2 个)
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{3} ./ C{1} % use curly braces to extract the content of the cell
C(3) ./ C(1) % this tries to divide the cell itself and generates an error
0 个评论
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.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!