to divide two cell arrays with each cell array containing one column
3 ビュー (過去 30 日間)
古いコメントを表示
to divide two cell arrays with each cell array containing one column
0 件のコメント
回答 (1 件)
the cyclist
2013 年 3 月 31 日
You do not provide quite enough detail, but I will make a guess at what you are trying to do.
If your cell arrays look like this:
% Here are some pretend data
C1 = {rand(3,1)};
C2 = {rand(3,1)};
Then you could divide those two columns like this:
C1{:}./C2{:}
There are also other approaches, and the best one may depend on what you want the output to look like.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Use COM Objects in MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!