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