Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は次のような垂直行列を持っています
names = { 11 22 33 44 55 }
そして、同じ文字列をすべてのように連結したい
names = { 11nere 22nere 33nere 44nere 55nere }
どうすればmatlabでそれを行うことができますか?
このワンライナーでそれを行う必要があります
names = cellfun(@(x)[num2str(x), 'nere'], names, 'uniformoutput', false);
ここで、セル配列には文字列ではなく数値エントリが含まれていると仮定しましたnames-それ以外の場合はさらに簡単です。
names
names = cellfun(@(x)[x, 'nere'], names, 'uniformoutput', false);