Double vs. Cell "Undefined function 'plus' for input arguments of type 'cell' "

In my code, I have two variables (inp.W{9} & inp.W{10}) which seems to be double (when I remove semicolon, this is shown in command Window: ans = [1x10 double]). However when I try to add these two variables, I get this error:
Undefined function 'plus' for input arguments of type 'cell'.
Error in truck (line 21) inp.W{9}+inp.W{10}

回答 (2 件)

Star Strider
Star Strider 2015 年 6 月 30 日
Without having them to experiment with and provide more specific code, I would use cell2mat to convert them first:
W9 = cell2mat(inp.W{9});
W10 = cell2mat(inp.W{10});
Result = W9 + W10;

4 件のコメント

Sam136
Sam136 2015 年 6 月 30 日
I have already tried this, but I get this error:
Attempt to reference field of non-structure array
Star Strider
Star Strider 2015 年 6 月 30 日
Without actually having your data, it’s difficult to provide an appropriate response. There are simply too many possibilities. It’s always possible any of us could guess the correct one, but that is a less than productive effort.
Sam136
Sam136 2015 年 6 月 30 日
I'd like to give more information to get better help, but I really don't know how to copy a long code with more than 2000 lines here.
Star Strider
Star Strider 2015 年 6 月 30 日
It’s not code but your data that we need to determine your problem.
First, save your ‘inp’ structure as a .mat file, then attach it using the ‘paperclip’ icon.

サインインしてコメントする。

Walter Roberson
Walter Roberson 2015 年 6 月 30 日
When you see
[1x10 double]
instead of numbers, then you are looking at a cell rather than a numeric array. Use
inp.W{9}{1}+inp.W{10}{1}

1 件のコメント

Sam136
Sam136 2015 年 6 月 30 日
I get same error as previous comment "Attempt to reference field of non-structure array"

サインインしてコメントする。

カテゴリ

ヘルプ センター および File ExchangeData Type Identification についてさらに検索

製品

タグ

質問済み:

2015 年 6 月 30 日

コメント済み:

2015 年 6 月 30 日

Community Treasure Hunt

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

Start Hunting!

Translated by