早教吧 育儿知识 作业答案 考试题库 百科 知识分享

MATLAB求解求值s=袭客码n从1到100,n方分之一第二题lims(x+h)-sinx除以hh~0

题目详情
MATLAB求解求值s=袭客码n从1到100,n方分之一 第二题 lim s(x+h)-sinx除以h h~0
▼优质解答
答案和解析
1、应该是级数求和吧。 代码 clc; clear all; close all; syms n s = symsum(1/n^2, 1, 100); vpa(s, 6) 结果 ans = 1.63498 >> 2、应该是(sin(x+h)-sin(x))/h吧,极限求解 代码 clc; clear all; close all; syms x h eq = (sin(x+h)-sin(x))/h; limit(eq, h, 0) 结果 ans = cos(x) >>