Manipulation Rules for Special Matrice

4 visualizaciones (últimos 30 días)
Azriel Faiz Abu Fadzil
Azriel Faiz Abu Fadzil el 22 de Oct. de 2017
Respondida: Nhlamulo Neftor Baloyi el 14 de Ag. de 2022
How to create a 4*6 matrix in which all elements have the value of pi

Respuestas (4)

jean claude
jean claude el 22 de Oct. de 2017
Editada: jean claude el 22 de Oct. de 2017
there is many ways to do it, you can for example assign i rows, j rows in a matrix of ones; then multiply by pi
x=ones(4,6)
y=x.*pi
  3 comentarios
jean claude
jean claude el 22 de Oct. de 2017
another way; it means from the first to 4th row and from the first to 6th column.
mat(1:4,1:6)=pi
jean claude
jean claude el 22 de Oct. de 2017
of course there is a lot of alternatives .. i will rephrase it

Iniciar sesión para comentar.


Steven Lord
Steven Lord el 22 de Oct. de 2017
Creating matrices is one of the fundamental operations in MATLAB. Take a look at the links on this documentation page. A number of the functions included on that page will be of use to you, both for this particular assignment and as you work more with MATLAB.

Nhlamulo Neftor Baloyi
Nhlamulo Neftor Baloyi el 14 de Ag. de 2022
a=zeros(4,6)+pi

Nhlamulo Neftor Baloyi
Nhlamulo Neftor Baloyi el 14 de Ag. de 2022
a=zeros(4,6)+pi
a = 4×6
3.1416 3.1416 3.1416 3.1416 3.1416 3.1416 3.1416 3.1416 3.1416 3.1416 3.1416 3.1416 3.1416 3.1416 3.1416 3.1416 3.1416 3.1416 3.1416 3.1416 3.1416 3.1416 3.1416 3.1416

Categorías

Más información sobre Matrices and Arrays 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