add character cells arrays
3 ビュー (過去 30 日間)
古いコメントを表示
we have a character cell [d d d d] and [d -d d -d]. how can we get [d+d d-d d+d d-d].
0 件のコメント
回答 (1 件)
Walter Roberson
2016 年 11 月 23 日
first = {'d', 'd', 'd', 'd'};
second = {'d', '-d', 'd', '-d'};
result = regexprep(strcat(first(:), {'+'}, second(:)), '+-', '-').' ;
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Get Started with MATLAB についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!