loops to define a matrix
3 ビュー (過去 30 日間)
古いコメントを表示
having trouble with this problem. i understand how loops and conditional statements work, but i think im just having trouble seeing where to begin and what to assign varibles to acheive the outcome.
help greatly appreciated!!
use loops to create a 4X3 matrix in which the value of each element is the sum of its row number and its column number divided by the square of its column number. for example, the value of element (2,3) is (2+3)/3^2 = 0.555
help please!! thanks
1 件のコメント
the cyclist
2011 年 10 月 7 日
Here is a hint on how to begin: Break the problem in parts:
First, write the loops you need (one loop for rows, and another for columns), without doing any calculations at all.
Then, define variable for the intermediate values you need (e.g. the sum).
Then, put those pieces together.
This is a fairly simple MATLAB problem. You might want to read the "Getting Started" guide, and possibly tell your teacher that you are struggling to even get started. Don't fool yourself into thinking that you really understand; it is simple problems like these that BUIILD your understanding.
回答 (1 件)
Sean de Wolski
2011 年 10 月 7 日
bsxfun(@(x,y)(x+y)./(y.^2),(1:4).',1:3)
"Look Ma, No loops!" ~ Walter Roberson
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Loops and Conditional Statements についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!