フィルターのクリア

How to call one of the outputs of the function?

22 ビュー (過去 30 日間)
Ali Deniz
Ali Deniz 2022 年 10 月 24 日
編集済み: Fangjun Jiang 2022 年 10 月 24 日
I have a function below. I have three outputs in this function which are "phi_ave_x, phi_ave_y, phi_ave_z", as seen below. How can call one of this outputs from this function in another code file. Thank you.
function [phi_ave_x, phi_ave_y, phi_ave_z] = crk4_aee321_Lorentz(xi,yi,zi,dt)

回答 (2 件)

Fangjun Jiang
Fangjun Jiang 2022 年 10 月 24 日
編集済み: Fangjun Jiang 2022 年 10 月 24 日
phi_ave_x = crk4_aee321_Lorentz(xi,yi,zi,dt)
[phi_ave_x, phi_ave_y] = crk4_aee321_Lorentz(xi,yi,zi,dt)
[phi_ave_x, phi_ave_y, phi_ave_z] = crk4_aee321_Lorentz(xi,yi,zi,dt)
[~, phi_ave_y, phi_ave_z] = crk4_aee321_Lorentz(xi,yi,zi,dt)
[~, ~, phi_ave_z] = crk4_aee321_Lorentz(xi,yi,zi,dt)

Jan
Jan 2022 年 10 月 24 日
[phi_ave_x, phi_ave_y, phi_ave_z] = crk4_aee321_Lorentz(xi,yi,zi,dt);
disp(phi_ave_y)
This uses the 2nd output phi_ave_y as input for the disp() command.

カテゴリ

Help Center および File ExchangeInteractive Control and Callbacks についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by