2
edits
(→Load Comma Separated Values (*.csv) files: fixed a typo) |
m (→Vectorizing Tricks: Use of brackets [] is unnecessary) |
||
Line 123: | Line 123: | ||
for i=1:n, x(i) = i; end | for i=1:n, x(i) = i; end | ||
x = | x = 1:n; | ||
This works for expressions on the index by wrapping the index in an expression: | This works for expressions on the index by wrapping the index in an expression: |
edits