arrange equation results from min to max to use after

1 次查看(过去 30 天)
t = [2993;3975.9;5063;6150;6919;8192.7;8862;10240.9;11488;12409.63;13545]
f = @(t) (2.2/9500).*((t/9500).^1.2).*exp(-((t/9500).^2.2))
g = @(t) 1-exp(-((t/9500).^2.2))
i want f(t) to be arranged from min to max to then do f(t)-g(t)
0.32398874
answers should be 0.39063829
0.31369048
0.31787694
....
...

采纳的回答

Bhaskar R
Bhaskar R 2021-6-25
t = [2993;3975.9;5063;6150;6919;8192.7;8862;10240.9;11488;12409.63;13545]
t = 11×1
1.0e+04 * 0.2993 0.3976 0.5063 0.6150 0.6919 0.8193 0.8862 1.0241 1.1488 1.2410
f = @(t) (2.2/9500).*((t/9500).^1.2).*exp(-((t/9500).^2.2))
f = function_handle with value:
@(t)(2.2/9500).*((t/9500).^1.2).*exp(-((t/9500).^2.2))
g = @(t) 1-exp(-((t/9500).^2.2))
g = function_handle with value:
@(t)1-exp(-((t/9500).^2.2))
sort(f(t))-g(t)
ans = 11×1
-0.0757 -0.1368 -0.2215 -0.3189 -0.3921 -0.5142 -0.5760 -0.6925 -0.7810 -0.8346
  5 个评论
firrou bouteflika
firrou bouteflika 2021-6-25
my bad i forgot that f(t) is * 10^-4 so thank you very much for helping me arranging my equation results

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

标签

产品


版本

R2012a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by