2021-10-26數(shù)學(xué)建模--神經(jīng)網(wǎng)絡(luò)在線繪圖工具贰军,流程圖繪圖工具,OCR圖片公式識別

一蟹肘、公式王
網(wǎng)站:https://gongshi.wang/词疼,從此再也不用手敲惡心的數(shù)學(xué)公式了~
應(yīng)該是利用OCR識別圖片中的公式,再將其轉(zhuǎn)換為latex和mathML格式帘腹。其中mathML格式粘貼到word中贰盗,選擇‘僅保留文本’,可以完美的顯示阳欲,在Office和wps切換中舵盈,也沒有出現(xiàn)錯誤陋率。
在我使用的過程中,反應(yīng)很迅速秽晚,也沒有出現(xiàn)錯誤瓦糟。
希望大家覺得不錯時,可以多給作者打賞爆惧!狸页。

二、神經(jīng)網(wǎng)絡(luò)畫圖工具
網(wǎng)址:overloaf在線繪圖
使用latex格式繪制神經(jīng)網(wǎng)絡(luò)扯再,當(dāng)然也可以使用latex的tikz進(jìn)行繪圖哈。主界面如下:

我用它在線繪制LSTM的效果圖:

繪制LSTM網(wǎng)絡(luò)的latex代碼(代碼見水又酚觥):
'''
% Kalman filter system model
% by Burkart Lingner
% An example using TikZ/PGF 2.00
%
% Features: Decorations, Fit, Layers, Matrices, Styles
% Tags: Block diagrams, Diagrams
% Technical area: Electrical engineering

\documentclass[a4paper,10pt]{article}

\usepackage[english]{babel}
\usepackage[T1]{fontenc}
\usepackage[ansinew]{inputenc}

\usepackage{lmodern} % font definition
\usepackage{amsmath} % math fonts
\usepackage{amsthm}
\usepackage{amsfonts}

\usepackage{tikz}

%%%<
\usepackage{verbatim}
\usepackage[active,tightpage]{preview}
\PreviewEnvironment{tikzpicture}
\setlength\PreviewBorder{5pt}%
%%%>

\begin{comment}
:Title: Kalman Filter System Model
:Slug: kalman-filter
:Author: Burkart Lingner

This is the system model of the (linear) Kalman filter.

\end{comment}

\usetikzlibrary{decorations.pathmorphing} % noisy shapes
\usetikzlibrary{fit} % fitting shapes to coordinates
\usetikzlibrary{backgrounds} % drawing the background after the foreground

\begin{document}

\begin{figure}[htbp]
\centering
% The state vector is represented by a blue circle.
% "minimum size" makes sure all circles have the same size
% independently of their contents.
\tikzstyle{state}=[circle,
thick,
minimum size=1.2cm,
draw=blue!80,
fill=blue!20]

% The measurement vector is represented by an orange circle.
\tikzstyle{measurement}=[circle,
thick,
minimum size=1.2cm,
draw=orange!80,
fill=orange!25]

% The control input vector is represented by a purple circle.
\tikzstyle{input}=[circle,
thick,
minimum size=1.2cm,
draw=purple!80,
fill=purple!20]

% The input, state transition, and measurement matrices
% are represented by gray squares.
% They have a smaller minimal size for aesthetic reasons.
\tikzstyle{matrx}=[rectangle,
thick,
minimum size=1cm,
draw=gray!80,
fill=gray!20]

% The system and measurement noise are represented by yellow
% circles with a "noisy" uneven circumference.
% This requires the TikZ library "decorations.pathmorphing".
\tikzstyle{noise}=[circle,
thick,
minimum size=1.2cm,
draw=yellow!85!black,
fill=yellow!40,
decorate,
decoration={random steps,
segment length=2pt,
amplitude=2pt}]

% Everything is drawn on underlying gray rectangles with
% rounded corners.
\tikzstyle{background}=[rectangle,
fill=gray!10,
inner sep=0.2cm,
rounded corners=5mm]

\begin{tikzpicture}[>=latex,text height=1.5ex,text depth=0.25ex]
% "text height" and "text depth" are required to vertically
% align the labels with and without indices.

% The various elements are conveniently placed using a matrix:
\matrix[row sep=0.5cm,column sep=0.5cm] {
% First line: Control input
&
\node (u_k-1) [input]{\mathbf{u}_{k-1}}; &
&
\node (u_k) [input]{\mathbf{u}_k}; &
&
\node (u_k+1) [input]{\mathbf{u}_{k+1}}; &
\
% Second line: System noise & input matrix
\node (w_k-1) [noise] {\mathbf{w}_{k-1}}; &
\node (B_k-1) [matrx] {\mathbf{B}}; &
\node (w_k) [noise] {\mathbf{w}_k}; &
\node (B_k) [matrx] {\mathbf{B}}; &
\node (w_k+1) [noise] {\mathbf{w}_{k+1}}; &
\node (B_k+1) [matrx] {\mathbf{B}}; &
\
% Third line: State & state transition matrix
\node (A_k-2) {\cdots}; &
\node (x_k-1) [state] {\mathbf{x}_{k-1}}; &
\node (A_k-1) [matrx] {\mathbf{A}}; &
\node (x_k) [state] {\mathbf{x}_k}; &
\node (A_k) [matrx] {\mathbf{A}}; &
\node (x_k+1) [state] {\mathbf{x}_{k+1}}; &
\node (A_k+1) {\cdots}; \
% Fourth line: Measurement noise & measurement matrix
\node (v_k-1) [noise] {\mathbf{v}_{k-1}}; &
\node (H_k-1) [matrx] {\mathbf{H}}; &
\node (v_k) [noise] {\mathbf{v}_k}; &
\node (H_k) [matrx] {\mathbf{H}}; &
\node (v_k+1) [noise] {\mathbf{v}_{k+1}}; &
\node (H_k+1) [matrx] {\mathbf{H}}; &
\
% Fifth line: Measurement
&
\node (z_k-1) [measurement] {\mathbf{z}_{k-1}}; &
&
\node (z_k) [measurement] {\mathbf{z}_k}; &
&
\node (z_k+1) [measurement] {\mathbf{z}_{k+1}}; &
\
};

% The diagram elements are now connected through arrows:
\path[->]
    (A_k-2) edge[thick] (x_k-1) % The main path between the
    (x_k-1) edge[thick] (A_k-1) % states via the state
    (A_k-1) edge[thick] (x_k)       % transition matrices is
    (x_k)   edge[thick] (A_k)       % accentuated.
    (A_k)   edge[thick] (x_k+1) % x -> A -> x -> A -> ...
    (x_k+1) edge[thick] (A_k+1)
    
    (x_k-1) edge (H_k-1)                % Output path x -> H -> z
    (H_k-1) edge (z_k-1)
    (x_k)   edge (H_k)
    (H_k)   edge (z_k)
    (x_k+1) edge (H_k+1)
    (H_k+1) edge (z_k+1)
    
    (v_k-1) edge (z_k-1)                % Output noise v -> z
    (v_k)   edge (z_k)
    (v_k+1) edge (z_k+1)
    
    (w_k-1) edge (x_k-1)                % System noise w -> x
    (w_k)   edge (x_k)
    (w_k+1) edge (x_k+1)
    
    (u_k-1) edge (B_k-1)                % Input path u -> B -> x
    (B_k-1) edge (x_k-1)
    (u_k)   edge (B_k)
    (B_k)   edge (x_k)
    (u_k+1) edge (B_k+1)
    (B_k+1) edge (x_k+1)
    ;

% Now that the diagram has been drawn, background rectangles
% can be fitted to its elements. This requires the TikZ
% libraries "fit" and "background".
% Control input and measurement are labeled. These labels have
% not been translated to English as "Measurement" instead of
% "Messung" would not look good due to it being too long a word.
\begin{pgfonlayer}{background}
    \node [background,
                fit=(u_k-1) (u_k+1),
                label=left:Entrance:] {};
    \node [background,
                fit=(w_k-1) (v_k-1) (A_k+1)] {};
    \node [background,
                fit=(z_k-1) (z_k+1),
                label=left:Measure:] {};
\end{pgfonlayer}

\end{tikzpicture}

\caption{Kalman filter system model}
\end{figure}

This is the system model of the (linear) Kalman filter. At each time
step the state vector \mathbf{x}_k is propagated to the new state
estimation \mathbf{x}_{k+1} by multiplication with the constant state
transition matrix \mathbf{A}. The state vector \mathbf{x}_{k+1} is
additionally influenced by the control input vector \mathbf{u}_{k+1}
multiplied by the input matrix \mathbf{B}, and the system noise vector
\mathbf{w}_{k+1}. The system state cannot be measured directly. The
measurement vector \mathbf{z}_k consists of the information contained
within the state vector \mathbf{x}_k multiplied by the measurement
matrix \mathbf{H}, and the additional measurement noise \mathbf{v}_k.

\end{document}
'''
三熄阻、visual-paradigm在線繪圖
還有一個在線繪圖網(wǎng)站:visual-paradigm

網(wǎng)站有很多好看的模板,可修改性強(qiáng)倔约,主界面:

上面三個就是這次用的很爽的工具了秃殉,記錄一下??。
對了浸剩,發(fā)現(xiàn)一個研究生數(shù)學(xué)建模論文收集的網(wǎng)址钾军,分享一下:歷年研究生數(shù)學(xué)建模優(yōu)秀論文匯總
————————————————
版權(quán)聲明:本文為CSDN博主「慕木子」的原創(chuàng)文章,遵循CC 4.0 BY-SA版權(quán)協(xié)議绢要,轉(zhuǎn)載請附上原文出處鏈接及本聲明吏恭。
原文鏈接:https://blog.csdn.net/MumuziD/article/details/108709537

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市重罪,隨后出現(xiàn)的幾起案子樱哼,更是在濱河造成了極大的恐慌,老刑警劉巖剿配,帶你破解...
    沈念sama閱讀 211,194評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件搅幅,死亡現(xiàn)場離奇詭異,居然都是意外死亡呼胚,警方通過查閱死者的電腦和手機(jī)茄唐,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,058評論 2 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來蝇更,“玉大人沪编,你說我怎么就攤上這事〔炯牛” “怎么了漾抬?”我有些...
    開封第一講書人閱讀 156,780評論 0 346
  • 文/不壞的土叔 我叫張陵,是天一觀的道長常遂。 經(jīng)常有香客問我纳令,道長,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,388評論 1 283
  • 正文 為了忘掉前任平绩,我火速辦了婚禮圈匆,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘捏雌。我一直安慰自己跃赚,他們只是感情好返吻,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,430評論 5 384
  • 文/花漫 我一把揭開白布赂鲤。 她就那樣靜靜地躺著,像睡著了一般贴铜。 火紅的嫁衣襯著肌膚如雪肤频。 梳的紋絲不亂的頭發(fā)上叹括,一...
    開封第一講書人閱讀 49,764評論 1 290
  • 那天,我揣著相機(jī)與錄音宵荒,去河邊找鬼汁雷。 笑死,一個胖子當(dāng)著我的面吹牛报咳,可吹牛的內(nèi)容都是我干的侠讯。 我是一名探鬼主播,決...
    沈念sama閱讀 38,907評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼暑刃,長吁一口氣:“原來是場噩夢啊……” “哼厢漩!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起稍走,我...
    開封第一講書人閱讀 37,679評論 0 266
  • 序言:老撾萬榮一對情侶失蹤袁翁,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后婿脸,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體粱胜,經(jīng)...
    沈念sama閱讀 44,122評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,459評論 2 325
  • 正文 我和宋清朗相戀三年狐树,在試婚紗的時候發(fā)現(xiàn)自己被綠了焙压。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,605評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡抑钟,死狀恐怖涯曲,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情在塔,我是刑警寧澤幻件,帶...
    沈念sama閱讀 34,270評論 4 329
  • 正文 年R本政府宣布,位于F島的核電站蛔溃,受9級特大地震影響绰沥,放射性物質(zhì)發(fā)生泄漏篱蝇。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,867評論 3 312
  • 文/蒙蒙 一徽曲、第九天 我趴在偏房一處隱蔽的房頂上張望零截。 院中可真熱鬧,春花似錦秃臣、人聲如沸涧衙。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,734評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽弧哎。三九已至,卻和暖如春稚虎,著一層夾襖步出監(jiān)牢的瞬間傻铣,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,961評論 1 265
  • 我被黑心中介騙來泰國打工祥绞, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人鸭限。 一個月前我還...
    沈念sama閱讀 46,297評論 2 360
  • 正文 我出身青樓蜕径,卻偏偏與公主長得像,于是被迫代替她去往敵國和親败京。 傳聞我的和親對象是個殘疾皇子兜喻,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,472評論 2 348

推薦閱讀更多精彩內(nèi)容