From d2980fadda952ce6598dae9103e36e476e62fc6d Mon Sep 17 00:00:00 2001 From: Chris Date: Tue, 9 Jul 2024 02:10:46 +0800 Subject: [PATCH] Site updated: 2024-07-09 02:10:44 --- 2024/07/01/Recent-thoughts-2024-07-01/index.html | 2 +- atom.xml | 6 +++--- category-sitemap.xml | 2 +- post-sitemap.xml | 2 +- search.xml | 2 +- sitemap.xml | 2 +- tag-sitemap.xml | 6 +++--- 7 files changed, 11 insertions(+), 11 deletions(-) diff --git a/2024/07/01/Recent-thoughts-2024-07-01/index.html b/2024/07/01/Recent-thoughts-2024-07-01/index.html index 3ee02ec148..a01ddee64b 100644 --- a/2024/07/01/Recent-thoughts-2024-07-01/index.html +++ b/2024/07/01/Recent-thoughts-2024-07-01/index.html @@ -24,7 +24,7 @@

2021年才突破3,3年涨了1,每年涨30%,不错咯。

一位教授也担任这个杂志的编辑了,主编换成Christian Jelsch了。现在的主编也是一位晶体学者。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
start_year = 2012;
# 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023
if_values = [1.404 1.599 1.602 1.78 1.753 2.011 2.12 2.463 3.196 3.841 3.8 4];
year_num = numel(ifvalues);
years = [start_year:start_year+year_num-1];
[xb, yb] = bar(years, if_values);
patch(xb, yb, [1:year_num], 'edgecolor', 'none', 'facealpha', 0.95);
hold on;
colormap(ggplot2(64));
xlim([years(1)-1 years(end)+10]);
plot(years, if_values, 'r-');
pred_num = 9;
for nn = 1:3
[p, s, mu] = polyfit(0:year_num-1, if_values, nn);
pred_year = start_year + year_num;
predifs = polyval(p, year_num:year_num+pred_num, [], mu);
plot([pred_year:pred_year+pred_num], predifs);
endfor
ylim([0 10])
xlabel("Year");
ylabel("Impact Factor");
legend ("IF values",
"IF values",
"Predicted IF values using degree 1",
"Predicted IF values using degree 2",
"Predicted IF values using degree 3",
"location", "bestoutside");
-

+

或者您可以把评论发在别处,添加指向本页的连接,然后把网址告诉我:

本文标题:近思录 2024-07-01

文章作者:Chris

发布时间:2024-07-01

最后更新:2024-07-09

原始链接:https://chriszheng.science/2024/07/01/Recent-thoughts-2024-07-01/

版权声明:本博客所有文章除特别声明外,均采用 CC BY 4.0 许可协议。转载请注明出处!


分享