Solve non-stiff differential equations, low order method. [TOUT,YOUT]  dịch - Solve non-stiff differential equations, low order method. [TOUT,YOUT]  Việt làm thế nào để nói

Solve non-stiff differential equati

Solve non-stiff differential equations, low order method.
[TOUT,YOUT] = ODE23(ODEFUN,TSPAN,Y0) with TSPAN = [T0 TFINAL] integrates
the system of differential equations y' = f(t,y) from time T0 to TFINAL
with initial conditions Y0. ODEFUN is a function handle. For a scalar T
and a vector Y, ODEFUN(T,Y) must return a column vector corresponding
to f(t,y). Each row in the solution array YOUT corresponds to a time
returned in the column vector TOUT. To obtain solutions at specific
times T0,T1,...,TFINAL (all increasing or all decreasing), use TSPAN =
[T0 T1 ... TFINAL].

[TOUT,YOUT] = ODE23(ODEFUN,TSPAN,Y0,OPTIONS) solves as above with default
integration properties replaced by values in OPTIONS, an argument created
with the ODESET function. See ODESET for details. Commonly used options
are scalar relative error tolerance 'RelTol' (1e-3 by default) and vector
of absolute error tolerances 'AbsTol' (all components 1e-6 by default).
If certain components of the solution must be non-negative, use
ODESET to set the 'NonNegative' property to the indices of these
components.

ODE23 can solve problems M(t,y)*y' = f(t,y) with mass matrix M that is
nonsingular. Use ODESET to set the 'Mass' property to a function handle
MASS if MASS(T,Y) returns the value of the mass matrix. If the mass matrix
is constant, the matrix can be used as the value of the 'Mass' option. If
the mass matrix does not depend on the state variable Y and the function
MASS is to be called with one input argument T, set 'MStateDependence' to
'none'. ODE15S and ODE23T can solve problems with singular mass matrices.

[TOUT,YOUT,TE,YE,IE] = ODE23(ODEFUN,TSPAN,Y0,OPTIONS) with the 'Events'
property in OPTIONS set to a function handle EVENTS, solves as above
while also finding where functions of (T,Y), called event functions,
are zero. For each function you specify whether the integration is
to terminate at a zero and whether the direction of the zero crossing
matters. These are the three column vectors returned by EVENTS:
[VALUE,ISTERMINAL,DIRECTION] = EVENTS(T,Y). For the I-th event function:
VALUE(I) is the value of the function, ISTERMINAL(I)=1 if the integration
is to terminate at a zero of this event function and 0 otherwise.
DIRECTION(I)=0 if all zeros are to be computed (the default), +1 if only
zeros where the event function is increasing, and -1 if only zeros where
the event function is decreasing. Output TE is a column vector of times
at which events occur. Rows of YE are the corresponding solutions, and
indices in vector IE specify which event occurred.

SOL = ODE23(ODEFUN,[T0 TFINAL],Y0...) returns a structure that can be
used with DEVAL to evaluate the solution or its first derivative at
any point between T0 and TFINAL. The steps chosen by ODE23 are returned
in a row vector SOL.x. For each I, the column SOL.y(:,I) contains
the solution at SOL.x(I). If events were detected, SOL.xe is a row vector
of points at which events occurred. Columns of SOL.ye are the corresponding
solutions, and indices in vector SOL.ie specify which event occurred.

Example
[t,y]=ode23(@vdp1,[0 20],[2 0]);
plot(t,y(:,1));
solves the system y' = vdp1(t,y), using the default relative error
tolerance 1e-3 and the default absolute tolerance of 1e-6 for each
component, and plots the first component of the solution.

Class support for inputs TSPAN, Y0, and the result of ODEFUN(T,Y):
float: double, single

See also
other ODE solvers: ode45, ode113, ode15s, ode23s, ode23t, ode23tb
implicit ODEs: ode15i
options handling: odeset, odeget
output functions: odeplot, odephas2, odephas3, odeprint
evaluating solution: deval
ODE examples: rigidode, ballode, orbitode
function handles: function_handle

NOTE:
The interpretation of the first input argument of the ODE solvers and
some properties available through ODESET have changed in MATLAB 6.0.
Although we still support the v5 syntax, any new functionality is
available only with the new syntax. To see the v5 help, type in
the command line
more on, type ode23, more off

Reference page in Help browser
0/5000
Từ: -
Sang: -
Kết quả (Việt) 1: [Sao chép]
Sao chép!
Solve non-stiff differential equations, low order method. [TOUT,YOUT] = ODE23(ODEFUN,TSPAN,Y0) with TSPAN = [T0 TFINAL] integrates the system of differential equations y' = f(t,y) from time T0 to TFINAL with initial conditions Y0. ODEFUN is a function handle. For a scalar T and a vector Y, ODEFUN(T,Y) must return a column vector corresponding to f(t,y). Each row in the solution array YOUT corresponds to a time returned in the column vector TOUT. To obtain solutions at specific times T0,T1,...,TFINAL (all increasing or all decreasing), use TSPAN = [T0 T1 ... TFINAL]. [TOUT,YOUT] = ODE23(ODEFUN,TSPAN,Y0,OPTIONS) solves as above with default integration properties replaced by values in OPTIONS, an argument created with the ODESET function. See ODESET for details. Commonly used options are scalar relative error tolerance 'RelTol' (1e-3 by default) and vector of absolute error tolerances 'AbsTol' (all components 1e-6 by default). If certain components of the solution must be non-negative, use ODESET to set the 'NonNegative' property to the indices of these components. ODE23 can solve problems M(t,y)*y' = f(t,y) with mass matrix M that is nonsingular. Use ODESET to set the 'Mass' property to a function handle MASS if MASS(T,Y) returns the value of the mass matrix. If the mass matrix is constant, the matrix can be used as the value of the 'Mass' option. If the mass matrix does not depend on the state variable Y and the function MASS is to be called with one input argument T, set 'MStateDependence' to 'none'. ODE15S and ODE23T can solve problems with singular mass matrices. [TOUT,YOUT,TE,YE,IE] = ODE23(ODEFUN,TSPAN,Y0,OPTIONS) with the 'Events' property in OPTIONS set to a function handle EVENTS, solves as above while also finding where functions of (T,Y), called event functions, are zero. For each function you specify whether the integration is to terminate at a zero and whether the direction of the zero crossing matters. These are the three column vectors returned by EVENTS: [VALUE,ISTERMINAL,DIRECTION] = EVENTS(T,Y). For the I-th event function: VALUE(I) is the value of the function, ISTERMINAL(I)=1 if the integration is to terminate at a zero of this event function and 0 otherwise. DIRECTION(I)=0 if all zeros are to be computed (the default), +1 if only zeros where the event function is increasing, and -1 if only zeros where the event function is decreasing. Output TE is a column vector of times at which events occur. Rows of YE are the corresponding solutions, and indices in vector IE specify which event occurred. SOL = ODE23(ODEFUN,[T0 TFINAL],Y0...) returns a structure that can be used with DEVAL to evaluate the solution or its first derivative at any point between T0 and TFINAL. The steps chosen by ODE23 are returned in a row vector SOL.x. For each I, the column SOL.y(:,I) contains the solution at SOL.x(I). If events were detected, SOL.xe is a row vector of points at which events occurred. Columns of SOL.ye are the corresponding solutions, and indices in vector SOL.ie specify which event occurred. Example [t,y]=ode23(@vdp1,[0 20],[2 0]); plot(t,y(:,1)); solves the system y' = vdp1(t,y), using the default relative error tolerance 1e-3 and the default absolute tolerance of 1e-6 for each component, and plots the first component of the solution. Class support for inputs TSPAN, Y0, and the result of ODEFUN(T,Y): float: double, single See also other ODE solvers: ode45, ode113, ode15s, ode23s, ode23t, ode23tb implicit ODEs: ode15i options handling: odeset, odeget output functions: odeplot, odephas2, odephas3, odeprint evaluating solution: deval ODE examples: rigidode, ballode, orbitode function handles: function_handle NOTE: The interpretation of the first input argument of the ODE solvers and some properties available through ODESET have changed in MATLAB 6.0. Although we still support the v5 syntax, any new functionality is available only with the new syntax. To see the v5 help, type in the command line more on, type ode23, more off Reference page in Help browser
đang được dịch, vui lòng đợi..
Kết quả (Việt) 2:[Sao chép]
Sao chép!
Giải quyết các phương trình vi phân phi cứng, phương pháp thứ tự thấp.
[Tout, yout] = ODE23 (ODEFUN, TSPAN, Y0) với TSPAN = [T0 TFINAL] tích hợp
hệ thống của phương trình vi phân y '= f (t, y) từ thời gian T0 để TFINAL
với điều kiện ban đầu Y0. ODEFUN là một chức năng xử lý. Đối với một vô hướng T
và một vector Y, ODEFUN (T, Y) phải trả lại một vector cột tương ứng
với f (t, y). Mỗi hàng trong mảng giải pháp yout tương ứng với một thời gian
quay trở lại trong các vector cột Tout. Để có được các giải pháp cụ thể tại
thời điểm T0, T1, ..., TFINAL (tất cả tăng hoặc giảm tất cả), sử dụng TSPAN =
[T0 T1 ... TFINAL]. [Tout, yout] = ODE23 (ODEFUN, TSPAN, Y0, OPTIONS ) giải quyết như trên với mặc định thuộc tính hội nhập thay thế bởi giá trị trong OPTIONS, một đối số được tạo ra với các chức năng ODESET. Xem ODESET để biết chi tiết. Lựa chọn thường được sử dụng là vô hướng khoan dung sai số tương đối 'reltol' (1e-3 theo mặc định) và vector của 'AbsTol' dung sai sai số tuyệt đối (tất cả các thành phần 1e-6 theo mặc định). Nếu một số thành phần của giải pháp phải không âm, sử dụng ODESET để thiết lập thuộc tính "không âm 'để các chỉ số của các thành phần. ODE23 có thể giải quyết vấn đề M (t, y) * y '= f (t, y) với khối lượng ma trận M là nonsingular. Sử dụng ODESET để thiết lập thuộc tính 'Thánh Lễ' đến một chức năng xử lý MASS nếu MASS (T, Y) trả về giá trị của ma trận khối lượng. Nếu ma trận khối lượng là không đổi, các ma trận có thể được sử dụng như là các giá trị của tùy chọn 'lễ'. Nếu ma trận khối lượng không phụ thuộc vào các biến trạng thái Y và các chức năng MASS là để được gọi với đối số một đầu vào T, thiết lập 'MStateDependence' đến 'không'. ODE15S và ODE23T có thể giải quyết vấn đề với ma trận khối lượng ít. [Tout, yout, TE, YE, IE] = ODE23 (ODEFUN, TSPAN, Y0, OPTIONS) với 'sự kiện' tài sản trong OPTIONS thiết lập để một hàm xử lý sự kiện, giải quyết như ở trên trong khi cũng tìm nơi chức năng của (T, Y), được gọi là chức năng sự kiện, bằng không. Đối với mỗi chức năng bạn chỉ rõ cho dù hội nhập là để chấm dứt tại một số không và liệu hướng không qua vấn đề. Đây là ba vectơ cột trả về bởi SỰ KIỆN: [VALUE, ISTERMINAL, DIRECTION] = SỰ KIỆN (T, Y). Đối với các sự kiện chức năng I-thứ: VALUE (I) là giá trị của hàm, ISTERMINAL (I) = 1 nếu hội nhập là để chấm dứt tại một điểm không hàm sự kiện này và 0 nếu ngược lại. DIRECTION (I) = 0 nếu tất cả số không phải được tính toán (mặc định), 1 nếu chỉ số không nơi hàm sự kiện ngày càng tăng, và -1 nếu chỉ số không nơi các hàm sự kiện đang giảm dần. Output TE là một vector cột lần tại các sự kiện xảy ra. Những hàng YE là giải pháp tương ứng, và các chỉ số trong vector IE xác định sự kiện xảy ra. SOL = ODE23 (ODEFUN, [T0 TFINAL], Y0 ...) trả về một cấu trúc có thể được sử dụng với Deval để đánh giá các giải pháp hoặc đầu tiên của mình phái sinh tại bất kỳ điểm nào giữa T0 và TFINAL. Các bước lựa chọn bởi ODE23 được trả về trong một vector hàng SOL.x. Đối với mỗi I, cột SOL.y (:, I) có chứa các giải pháp tại SOL.x (I). Nếu các sự kiện đã được phát hiện, SOL.xe là một vector hàng của các điểm mà tại đó các sự kiện xảy ra. Cột SOL.ye là tương ứng các giải pháp, và các chỉ số trong vector SOL.ie xác định sự kiện xảy ra. Ví dụ [t, y] = ode23 (@ vdp1, [0 20], [2 0]); lô (t, y (:, 1)); giải quyết các hệ thống y '= vdp1 (t, y), sử dụng mặc định sai số tương đối khoan dung 1e-3 và dung sai tuyệt đối mặc định của 1e-6 cho từng thành phần, và âm mưu thành phần đầu tiên của giải pháp . Lớp hỗ trợ cho đầu vào TSPAN, Y0, và kết quả của ODEFUN (T, Y): float: đôi, đơn See cũng giải quyết khác ODE: ode45, ode113, ode15s, ode23s, ode23t, ode23tb ODEs ngầm: ode15i tùy chọn xử lý: odeset , odeget chức năng đầu ra: odeplot, odephas2, odephas3, odeprint giải pháp đánh giá: Deval ví dụ ODE: rigidode, ballode, orbitode chức năng xử lý: function_handle Chú ý: Việc giải thích các tham số đầu vào đầu tiên của giải pháp ODE và một số tài sản có sẵn thông qua ODESET đã thay đổi trong MATLAB 6.0. Mặc dù chúng tôi vẫn hỗ trợ cú pháp v5, bất kỳ chức năng mới là chỉ có sẵn với các cú pháp mới. Để xem trợ giúp v5, gõ vào dòng lệnh trên nhiều hơn, gõ ode23, hơn off trang tham khảo trong trình duyệt giúp




































































đang được dịch, vui lòng đợi..
 
Các ngôn ngữ khác
Hỗ trợ công cụ dịch thuật: Albania, Amharic, Anh, Armenia, Azerbaijan, Ba Lan, Ba Tư, Bantu, Basque, Belarus, Bengal, Bosnia, Bulgaria, Bồ Đào Nha, Catalan, Cebuano, Chichewa, Corsi, Creole (Haiti), Croatia, Do Thái, Estonia, Filipino, Frisia, Gael Scotland, Galicia, George, Gujarat, Hausa, Hawaii, Hindi, Hmong, Hungary, Hy Lạp, Hà Lan, Hà Lan (Nam Phi), Hàn, Iceland, Igbo, Ireland, Java, Kannada, Kazakh, Khmer, Kinyarwanda, Klingon, Kurd, Kyrgyz, Latinh, Latvia, Litva, Luxembourg, Lào, Macedonia, Malagasy, Malayalam, Malta, Maori, Marathi, Myanmar, Mã Lai, Mông Cổ, Na Uy, Nepal, Nga, Nhật, Odia (Oriya), Pashto, Pháp, Phát hiện ngôn ngữ, Phần Lan, Punjab, Quốc tế ngữ, Rumani, Samoa, Serbia, Sesotho, Shona, Sindhi, Sinhala, Slovak, Slovenia, Somali, Sunda, Swahili, Séc, Tajik, Tamil, Tatar, Telugu, Thái, Thổ Nhĩ Kỳ, Thụy Điển, Tiếng Indonesia, Tiếng Ý, Trung, Trung (Phồn thể), Turkmen, Tây Ban Nha, Ukraina, Urdu, Uyghur, Uzbek, Việt, Xứ Wales, Yiddish, Yoruba, Zulu, Đan Mạch, Đức, Ả Rập, dịch ngôn ngữ.

Copyright ©2024 I Love Translation. All reserved.

E-mail: