matlab积分使用
Posted 理舞
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了matlab积分使用相关的知识,希望对你有一定的参考价值。
clc; %清屏 clear; %清除变量 close all; %关闭 syms x; f(x) = x; df = int(f(x),x);%求不定积分 figure; subplot(1,2,1); ezplot(df); %{ int(F,var,a,b) 函数F对变量var求积分,下标为a,上标为b, 不要a,b表示不定积分 %} %二重积分 df2 = int(int(f(x),x),x); subplot(1,2,2); ezplot(df2);
以上是关于matlab积分使用的主要内容,如果未能解决你的问题,请参考以下文章