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–2023 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/v9.2.0/Examples.html