Manipulation Rules for Special Matrice
Afficher commentaires plus anciens
How to create a 4*6 matrix in which all elements have the value of pi
Réponses (4)
jean claude
le 22 Oct 2017
Modifié(e) : jean claude
le 22 Oct 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 commentaires
John D'Errico
le 22 Oct 2017
Modifié(e) : John D'Errico
le 22 Oct 2017
Well, no, you don't HAVE to do it that way. In fact, I can think of at least a half dozen ways to solve the problem. Given that this is surely a homework problem, I would not supply those answer, nor would I have given a direct answer at all. Instead it is better to guide the person into solving it themselves.
jean claude
le 22 Oct 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
le 22 Oct 2017
of course there is a lot of alternatives .. i will rephrase it
Steven Lord
le 22 Oct 2017
0 votes
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
le 14 Août 2022
0 votes
a=zeros(4,6)+pi
a=zeros(4,6)+pi
Catégories
En savoir plus sur Creating and Concatenating Matrices dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!