当前位置:网站首页>Matlab [function derivation]
Matlab [function derivation]
2022-07-01 08:33:00 【桜キャンドルル】
Catalog
Find the zero point of the derivative function
Derivative of compound function
Derivation of parametric equation
One 、 Derivative function
Derivative function diff, Replace variable subs
syms x
f=x^(1/2)+sin(x);
diff(f)
Find the zero point of the derivative function
syms x
df=3*x^2-6*x+3
s=solve(df)
Find the higher derivative
syms x
df=3*x^2-6*x+3
z=diff(df,2)
Derivative of compound function
syms x
f=log(cos(exp(x)));
diff(f)
Implicit derivative
Here we need to use the implicit function derivation formula
% Declare two symbolic variables
syms x y
% Generate our function
f=exp(y)+x*y+exp(x);
% Yes x Finding partial derivatives
dfx=diff(f,x);
% Yes y Finding partial derivatives
dfy=diff(f,y);
% Derivation formula of implicit function
dyx=-dfx/dfy
Derivation of parametric equation
syms t
x=t-sin(t);
y=1-cos(t);
% seek dx/dt
dx=diff(x,t);
%dy/dt
dy=diff(y,t);
dy/dx
Find the zero of a function
Use fzero( function , Range ) Then we can find the zero point in this range
syms x
[email protected](x) exp(x)+sin(x)+x;
fzero(f,[-1,1])
边栏推荐
- Provincial selection + noi Part II string
- Review of week 280 of leetcode
- Book of quantitative trading - reading notes of the man who conquers the market
- 使用threejs简单Web3D效果
- Intelligent water and fertilizer integrated control system
- Intelligent water conservancy solution
- 【无标题】
- SPL installation and basic use (II)
- Yolov5 advanced six target tracking environment construction
- Luogu p1088 [noip2004 popularization group] Martians
猜你喜欢
【Redis】一气呵成,带你了解Redis安装与连接
【js逆向】md5加密参数破解
Airsim radar camera fusion to generate color point cloud
01 NumPy介绍
《微机原理》-绪论
shardingSphere
[staff] key number (key number identification position | key number marking list | a major key identification principle | F, C, G position marking ascending | F major key identification principle | B
基于Gazebo的无人机管道检测
【刷题】字符统计【0】
OJ input and output exercise
随机推荐
【刷题】字符统计【0】
手工挖XSS漏洞
《单片机原理及应用》—定时器、串行通信和中断系统
Field agricultural irrigation system
The data analyst will be ruined without project experience. These 8 project resources will not be taken away
2022 Chinese cook (technician) simulation test and Chinese cook (technician) practice test video
《单片机原理与应用》——并行IO口原理
golang中的正则表达式使用注意事项与技巧
Precautions and skills in using regular expressions in golang
leetcode T31:下一排列
Yolov5进阶之七目标追踪最新环境搭建
Provincial election + noi Part III tree problems
Agrometeorological environment monitoring system
华为机试真题专栏订阅指引
AES简单介绍
Hijacking a user's browser with beef
Leetcode t31: next spread
shardingSphere
Suivi des cibles de manoeuvre - - mise en oeuvre du modèle statistique actuel (modèle CS) filtre Kalman étendu / filtre Kalman sans trace par MATLAB
Leetcode t39: combined sum