從 Matlab 函式返回多個值

Ammar Ali 2021年10月2日 2021年7月4日
從 Matlab 函式返回多個值

本教程將討論如何使用 MATLAB 中的方括號從函式返回多個值。

使用 MATLAB 中的方括號從函式返回多個值

如果要從函式返回多個值,則必須在用逗號分隔的方括號內定義所有值,並在函式邊界內為它們分配所需的輸出。例如,讓我們建立一個函式並返回三個值。請參考下面的程式碼。

[a,b,c] = fName()
function [a,b,c] = fName()
    a = 1;
    b = 2;
    c = 5;
end

輸出:

a =

     1


b =

     2


c =

     5

正如你在輸出中看到的,該函式返回了三個值。

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 Function