필터 지우기
필터 지우기

How can I present time variant equation in Matlab

조회 수: 2 (최근 30일)
Adham Ahmed
Adham Ahmed 2023년 1월 25일
답변: Piyush Patil 2023년 3월 1일
How can I present time variant equation in Matlab
for example it F(x)=x^2+3x+4
how to present F(x,t)
  댓글 수: 5
Adham Ahmed
Adham Ahmed 2023년 1월 25일
How about Z=(f(x),t)
Dyuman Joshi
Dyuman Joshi 2023년 1월 25일
Give an example for Z as a function of f(x) and t, and once again, explicitly specify what you mean by 'to present'.

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

채택된 답변

Piyush Patil
Piyush Patil 2023년 3월 1일
Hello Adham,
I am assuming that you want to define a function of type – z(f(x), t).
So here, you are having a function ‘z’ that depends on f(x) and t. You can represent ‘z’ using an anonymous function with two input arguments – x and t.
Let’s consider an example –
z(f(x), t) = f(x)*t + t^2
and
f(x) = x^2 + 3*x + 4
You can define z and f as follows -
% Define the function f(x)
f = @(x) x^2 + 3*x + 4
% Define the function z(f(x), t)
z = @(x, t) t*f(x) + t^2;
% Evaluate the function Z at x = 2 and t = 3
z(2,3)
You may refer to the following link to know about the usage of anonymous functions - Anonymous Functions

추가 답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by