Borrar filtros
Borrar filtros

How to program a nested loop with a matrix?

4 visualizaciones (últimos 30 días)
Rose
Rose el 24 de Mzo. de 2018
Respondida: Adnan Haider el 1 de Dic. de 2021
Nested loop: Write a program to create a 4x4 matrix for which each entry is computed as follows: A(i,j) = 2i-j.
  2 comentarios
Greg
Greg el 24 de Mzo. de 2018
What have you tried?
We aren't here to do your homework for you.
Rose
Rose el 24 de Mzo. de 2018
Sorry Greg, I didn't want to give the impression that I'm not trying! I'm just a bit confused about exactly what this question is asking. Any thoughts to clarify the procedure (not the exact code) would be appreciated :)

Iniciar sesión para comentar.

Respuesta aceptada

Abraham Boayue
Abraham Boayue el 24 de Mzo. de 2018
Hey Rose, since the size of your matrix is going to be 4x4, you will need to do the following to achieve your goal.
1. Initialize A to a 4x4 zero matrix since that's how much space you need.
N = 4; this is the number of rows
M = 4; number of columns
A = zeros(N,M); % 4x4 matrix
2. write your double for loops
for i = 1 : N
for j = 1: M
write your code here (It will be just a single line code)
read about how for loop works, it is one of the basis of programming.
end
end
  2 comentarios
Rose
Rose el 24 de Mzo. de 2018
Thank you so much, this helped a lot!
Abraham Boayue
Abraham Boayue el 24 de Mzo. de 2018
You are welcome, feel free to to ask if you get stuck.

Iniciar sesión para comentar.

Más respuestas (1)

Adnan  Haider
Adnan Haider el 1 de Dic. de 2021
%% how to write a table in matlab

Categorías

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

Community Treasure Hunt

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

Start Hunting!

Translated by