linear algebra question using the matlab What matlab command
linear algebra question!
using the matlab
What matlab command, or combination of commands (using 25 characters or less), could be used to create the following matrix? Look for a lower triangular matrix that is repeated many times. First try to produce that lower triangular matrix with as few characters as possible.Solution
repmat(tril(ones(3,3)),2,5)
