Task 06 :第三章习题

泄露秘密 提交于 2019-12-02 12:57:50

在这里插入图片描述

y = inline('sin(x) / (1 + 3 * x + x * x)', 'x')

function Z = calcul(x1, x2, x3)
Z = x1 ^ 2 + 2 * x2 ^ 2 + 3 * x3 ^ 2 + 2 * x1 * x2 + 3 * x2 * x3 + 5 * x2 * x3;
% calcul(x1, x2, x3) is a design formulas
% The x1, x2, x3 must be number
% For example calcul(1, 1, 1)
%           ans = 
%               16
clc
clear
x = input('please input a number');
str = num2str(x);
for i = 1 ; length(str)
    r(i) = str2double(str(i));
end
if length(r) == 1
    disp('the answer is 0');
else
    for j = 2 ; length(r)
        s = find(r(1 : j - 1) > r(j))
        u(j) = length(s)
        result = sun(u)
    end
    disp('the ansser is');
    disp(result);
end
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!