How would I create a function using a positive integer 'q' in a 5 by q matrix, where row 'i' consists of i, 2i, 3i...qi.

4 ビュー (過去 30 日間)
This is a homework question I have been stuck on.

採用された回答

Jan
Jan 2016 年 2 月 14 日
編集済み: Jan 2016 年 2 月 14 日
You do not need bsxfun, because Matlab uses the dyadic product for [N x 1] * [1 x M] arrays:
q = 7;
(1:5).' * (1:q)
Sorry for solving your homework. You could try to solve this with two nested loops instead. Simply try it and post the code in case of problems.

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by