How to extract one element from array in function?

조회 수: 15 (최근 30일)
ryunosuke tazawa
ryunosuke tazawa 2021년 7월 17일
댓글: Walter Roberson 2021년 7월 18일
I want to extract one element from array, but it is difficult in function statement.
Please someone tell me the way.
function dtheta = odeFun(t, theta)
g = 9.8;
l = 1;
Trq = randi([10 25],1,1); % Generate random numbers from 10 to 25
disp(Trq(1,1)) ← I wanna extract one element here.
% theta(1) = theta, theta(2) = dtheta
dtheta = zeros(2, 1);
dtheta(1) = theta(2);
dtheta(2) = -g/l*theta(1)-Trq;
end

답변 (1개)

LO
LO 2021년 7월 17일
편집: LO 2021년 7월 17일
It is not clear what you want the function to do. What is t? and theta?
If your aim is to apply a fixed transformation of theta and create 2 output variables (dtheta and Trq) you need to specify a "Trq output variable" in the function synthax together with dtheta.
test = odeFun(2,45); % I've tried to test value pairs, in absence of any other hint
function [dtheta,Trq] = odeFun(t, theta)
g = 9.8;
l = 1;
Trq = randi([10 25],1,1); % Generate 1 random number from 10 to 25 (it generates only 1 Nr)
dtheta = zeros(2, 1);
dtheta(1) = theta(1); % I've changed theta's index to 1, it did not work otherwise
dtheta(2) = -g/l*theta(1)-Trq;
end
  댓글 수: 6
LO
LO 2021년 7월 18일
편집: LO 2021년 7월 18일
Trq = randi([10 25],1,1); % this is your randomly generated torque
test = odeFun(2,45,Trq); % this is your test measure using the torque value
function [dtheta] = odeFun(t, theta, Trq)
g = 9.8;
l = 1;
dtheta = zeros(2, 1);
dtheta(1) = theta(1);
dtheta(2) = -g/l*theta(1)-Trq;
end
Walter Roberson
Walter Roberson 2021년 7월 18일
Using randomness outside of the odeFun and passing the value in, is something that is entirely valid.
If you were wanting to call this from ode45() then see http://www.mathworks.com/help/matlab/math/parameterizing-functions.html

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Programming에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by