Tagged Questions
4
votes
3answers
3k views
How can I create a triangular matrix based on a vector, in MATLAB?
Let's say I've got a vector like this one:
A = [101:105]
Which is really:
[ 101, 102, 103, 104, 105 ]
And I'd like to use only vector/matrix functions and operators to produces the matrix:
101 ...