フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

About looping and array

2 ビュー (過去 30 日間)
Yoga Arviansyah
Yoga Arviansyah 2018 年 9 月 24 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
For example A=(aa bb cc dd) and B=(aa bb xx yy zz) then i want to display like this (xx yy zz)
*A and B are string
How to display like that by using looping only...??

回答 (1 件)

KSSV
KSSV 2018 年 9 月 24 日
A= {'aa' 'bb' 'cc' 'dd'} ;
B={'aa' 'bb' 'xx' 'yy' 'zz'} ;
s = ['(' B{3},',',B{4},',',B{5},')']

この質問は閉じられています。

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by