disp some number with loop for

1 回表示 (過去 30 日間)
zina ben
zina ben 2012 年 7 月 9 日
Hello!
please i need to disp this result from loop for
Y=6000000,Y=600000,Y=60000, Y=6000,Y=600,Y=60,Y=6,Y=0.6,Y=0.06,Y=0.006,Y=0.0006,
Y=0.00006,Y=0.000006,Y=0.0000006.
help me.thanks in advance
  1 件のコメント
Jan
Jan 2012 年 7 月 9 日
Because this looks like a homework question, please post have you have tried so far and what problem occurred.

サインインしてコメントする。

回答 (1 件)

Kye Taylor
Kye Taylor 2012 年 7 月 9 日
If you need the number of zeros before the decimal place and after to be exactly as you indicated in the original question, try
v = (6:-1:-7);
for j = 1:length(v);
sprintf(['%.',num2str(-1*min(0,v(j))),'f'],6*10^v(j))
end

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by