Creating a matrix with specific sequence

3 ビュー (過去 30 日間)
Gina Barlage
Gina Barlage 2015 年 5 月 24 日
コメント済み: Gina Barlage 2015 年 5 月 25 日
I was given this as a homework assignment but I am not really sure where to even start. Would this be a loop creation? Nested loop?
The script should assume values are specified on a command line before being run. The script should be able to take values of a, b, c, and n, and output a 3-x-n matrix B such that
B = [a a^2 ... a^n; b 2b ... nb; nc (n-1)c ... c]
Proper execution of the script would appear as follows:
>> a = 2; b = 3; c = 4; n = 3;
>> script18
B =
2 4 8
3 6 9
12 8 4
Note that this script should function for any integer values of a, b, c and n.
  2 件のコメント
Stephen23
Stephen23 2015 年 5 月 25 日
編集済み: Stephen23 2015 年 5 月 25 日
There is no need to use loops to solve everything in MATLAB. In fact there are much neater and faster ways of using MATLAB most effectively: by writing fully vectorized code instead, as Walter Roberson has hinted to you already.
Gina Barlage
Gina Barlage 2015 年 5 月 25 日
How would I get it into a matrix form? Would I use a command like the zeros or ones? Thank you for the hint.

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

回答 (1 件)

Walter Roberson
Walter Roberson 2015 年 5 月 24 日
Hints:
7.^(1:10)
(10:-1:1)

カテゴリ

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