use cell items in the conv
古いコメントを表示
I Tried ab(u,v)=conv({a(u,1)},{b(v,1)}) where a and b are cels hoding the polymonial
I get Error using conv2
Invalid data type. First and second arguments must be numeric or logical.
回答 (1 件)
Walter Roberson
2021 年 10 月 25 日
conv() will never be able to process cell arrays .
You need to use
ab = conv(a{u,1}, b{v,})
2 件のコメント
Robert Redinbo
2021 年 10 月 25 日
Image Analyst
2021 年 10 月 25 日
Here's another chance to read the posting guidelines:
After that you'll know you should have attached your variables.
save('answers.mat', 'a', 'b', 'u', 'v');
We'll check back later for the attached mat file.
カテゴリ
ヘルプ センター および File Exchange で Multidimensional Arrays についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!