Find the point where the sin(x) function takes its minimum in the range 0<x<2*pi.
1条回答 默认 最新
joel_1993 2021-11-01 13:29关注你好同学,可以直接
x=linspace(0,2*pi,101); y=sin(x); x(y=max(y))结果:
ans =1.570796326794897
解决 无用评论 打赏 举报
Find the point where the sin(x) function takes its minimum in the range 0<x<2*pi.
你好同学,可以直接
x=linspace(0,2*pi,101);
y=sin(x);
x(y=max(y))
结果:
ans =
1.570796326794897