フィルターのクリア

can i give variable different names then call this name

1 回表示 (過去 30 日間)
Abdulaziz
Abdulaziz 2012 年 11 月 29 日
hi guys
please I have question in displaying a name in matlab. I am using 5 cases each one has its won properties. after finishing the calculation I want to display the material name with the output data. is there any way to give a variable the name of material in every case so I can call it in the display or fprintf function.
Best regards

採用された回答

Matt J
Matt J 2012 年 11 月 29 日
Sure. You can even pass it several names, e.g.,
material={'lead','silver','gold'};
for ii=1:3, disp(material{ii}), end

その他の回答 (2 件)

Azzi Abdelmalek
Azzi Abdelmalek 2012 年 11 月 29 日
You can also generate names depending on your counter
for k=1:3
name{k}=sprintf('name%d',k)
end

Walter Roberson
Walter Roberson 2012 年 11 月 29 日

カテゴリ

Help Center および File ExchangeMATLAB についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by