loops to define a matrix

2 visualizaciones (últimos 30 días)
Morley
Morley el 7 de Oct. de 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 comentario
the cyclist
the cyclist el 7 de Oct. de 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.

Iniciar sesión para comentar.

Respuestas (1)

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

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by