MATLAB 循环向量

Ammar Ali 2021年10月2日 2021年7月4日
MATLAB 循环向量

本教程将讨论如何使用 MATLAB 中的 for 循环遍历向量。

在 MATLAB 中使用 for 循环遍历向量

你可以使用 for 循环遍历 MATLAB 中的向量。例如,让我们遍历一个数值向量并显示其值。请参考下面的代码。

v = [1 5 7 9];
for i = v
    disp(i)
end

输出:

     1

     5

     7

     9

在上面的代码中,我们迭代了一个数值向量,你可以根据你的要求改变向量。你还可以遍历数组。例如,让我们遍历一个字符串数组并显示其值。请参考下面的代码。

v = {'Hello' , 'World'};
for i = v
    disp(i)
end

输出:

    {'Hello'}

    {'World'}

在上面的代码中,我们遍历了一个字符串数组。

Author: Ammar Ali
Ammar Ali avatar Ammar Ali avatar

Hello! I am Ammar Ali, a programmer here to learn from experience, people, and docs, and create interesting and useful programming content. I mostly create content about Python, Matlab, and Microcontrollers like Arduino and PIC.

LinkedIn Facebook

相关文章 - MATLAB Loop

相关文章 - MATLAB Vector