数学建模社区-数学中国
标题: * XeTeX is required to compile this document. [打印本页]
作者: smile921 时间: 2011-3-8 22:17
标题: * XeTeX is required to compile this document.
* W5 n8 |6 \; n# B. }7 W ********************************************
* XeTeX is required to compile this document.
* Sorry!
********************************************.
\RequireXeTeX ...********************************}
\endgroup \fi
l.25 \RequireXeTeX
3 L+ D2 @$ `. p$ t: U? h
This error message was generated by an \errmessage
command, so I can't give any explicit help.
Pretend that you're Hercule Poirot: Examine all clues,
and deduce the truth by order and method.
0 a: L: x S5 w5 m, m$ k
?
. n: g4 K1 y( S( D
************************************************************************************
源码:
% -*- coding: utf-8 -*-
: o! y$ w$ u+ f# H& u
7 j- E9 P% W' V; Q2 q
% This LaTeX was auto-generated from an M-file by MATLAB.
% To make changes, update the M-file and republish this document.
/ w# N1 u" M& t1 j6 ~1 X
\documentclass{article}
\usepackage{graphicx}
\usepackage{color}
& V! a- V* ~. b- I
% ++++++++++++ attach the following code
% 10:56上午,添加中文支持模块
- Q% ?7 C3 \3 g- w! @1 [
\usepackage{xeCJK}
\setCJKmainfont{FangSong_GB2312}
% ++++++++++++ finish attaching
1 ^$ }. H/ ?9 K4 s. X
\sloppy
\definecolor{lightgray}{gray}{0.5}
\setlength{\parindent}{0pt}
% |; m3 j C! q1 v9 w6 M" }, q9 X\begin{document}
% P g; m7 M2 {6 z0 F
`- q& e% q! T/ m# _ \begin{verbatim}
%fhunction kalmanfilter
% 2010-4-15, luyz23, 从MATLAB到latex的简单示例
% >> publish('kalmanfilter.m','latex')
% -*- 卡尔曼滤波 -*-
% 此范例源自:网络论坛,在此感谢
clear
N=800; w(1)=0; w=randn(1,N); %系统预测的随机白噪声
x(1)=0; a=1;
for k=2:N;
x(k)=a*x(k-1)+w(k-1); %系统的预测值
end
V=randn(1,N); %测量值的随机白噪声
q1=std(V); Rvv=q1.^2;
q2=std(x); Rxx=q2.^2;
q3=std(w); Rww=q3.^2;
c=0.2;
Y=c*x+V; %测量值
p(1)=0; s(1)=0;
for t=2:N;
p1(t)=a.^2*p(t-1)+Rww; %前一时刻X的相关系数
b(t)=c*p1(t)/(c.^2*p1(t)+Rvv); %卡尔曼增益
s(t)=a*s(t-1)+b(t)*(Y(t)-a*c*s(t-1)); %经过滤波后的信号
p(t)=p1(t)-c*b(t)*p1(t);%t状态下x(t|t)的相关系数
end
figure(1); plot(x); title('系统的预测值');
figure(2); plot(Y); title('测量值');
figure(3); plot(s); title('滤波后的信号');
\end{verbatim}
3 q9 T- I7 s5 x' y' F4 m: J( K7 O\includegraphics [width=4in]{kalmanfilter_01.eps}
; g) {3 n7 w# [# \& `
\includegraphics [width=4in]{kalmanfilter_02.eps}
$ W5 j( T: A$ e; h0 |; I' g
\includegraphics [width=4in]{kalmanfilter_03.eps}
! _4 P1 n8 j5 d3 y# p+ n6 q i8 O4 O& D# V9 _* a
d7 k& P6 q" l: m, V* y
\end{document}
& Y' f8 D- y4 s5 v! ]5 z$ o
& d' g! C( ?2 B3 u7 v# F/ X& M% u
! j1 h; F2 d% U3 T5 |$ J( w' w
作者: smile921 时间: 2011-3-8 22:18
求正解 .
+ ^, l4 r- l! P; ^4 u: i0 j谢谢
作者: madio 时间: 2011-3-10 03:58
我记得给你回复过了,你的这个文档中间的文本部分有几行不是latex的代码,修改一下,其他的就是需要使用xetex进行编译,较早的版本需要使用命令行形式编译,ctex5.6以上的版本可以直接通过界面的按钮编译,点击那个写着xelatex的按钮就可以编译成功,最后点击有pdf标志的按钮就可以看到结果,因为这个格式的直接生成pdf文档。
| 欢迎光临 数学建模社区-数学中国 (http://www.madio.net/) |
Powered by Discuz! X2.5 |