loops to define a matrix

3 Ansichten (letzte 30 Tage)
Morley
Morley am 7 Okt. 2011
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 Kommentar
the cyclist
the cyclist am 7 Okt. 2011
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.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Sean de Wolski
Sean de Wolski am 7 Okt. 2011
bsxfun(@(x,y)(x+y)./(y.^2),(1:4).',1:3)
"Look Ma, No loops!" ~ Walter Roberson

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by