19.7 Примеры
Ниже приведены примеры вопросов по векторизации, заданных реальными пользователями Octave, и их решения.
- Для вектора
A, следующий циклn = length (A) - 1; B = zeros (n, 2); for i = 1:n ## this will be two columns, the first is the difference and ## the second the mean of the two elements used for the diff. B(i,:) = [A(i+1)-A(i), (A(i+1) + A(i))/2]; endfor
можно преобразовать в следующую однострочную запись:
B = [diff(A)(:), 0.5*(A(1:end-1)+A(2:end))(:)]
Обратите внимание на использование индексирования двоеточием для преобразования промежуточного результата в столбец. Это распространенный трюк векторизации.
© 1996–2022 The Octave Project Developers
Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are preserved on all copies.
Permission is granted to copy and distribute modified versions of this manual under the conditions for verbatim copying, provided that the entire resulting derived work is distributed under the terms of a permission notice identical to this one.Permission is granted to copy and distribute translations of this manual into another language, under the above conditions for modified versions.
https://docs.octave.org/v6.4.0/Examples.html