mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 17:41:41 +00:00
Update matlab.html.markdown
Added subsection "Common vector functions"
This commit is contained in:
parent
9190044dee
commit
53e121b37d
@ -256,6 +256,17 @@ cross(A,B) % Returns the cross product of the vectors A and B
|
||||
dot(A,B) % Returns the scalar product of the vectors A and B. A and B must be vectors of the same length.
|
||||
transpose(A) % Returns the transpose of A
|
||||
|
||||
% Common vector functions
|
||||
max %largest component
|
||||
min %smallest component
|
||||
length %length of a vector
|
||||
sort %sort in ascending order
|
||||
sum %sum of elements
|
||||
prod %product of elements
|
||||
median %median value
|
||||
mean %mean value
|
||||
std %standard deviation
|
||||
|
||||
|
||||
```
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user