使用 M 块时出错(在 Xilinx 系统生成器中)?

发布于 2024-12-21 21:50:58 字数 1024 浏览 2 评论 0原文

我在 M Blcok(Simulink 中的 Xilinx 模块之一)内编写了这段代码:

function z= discorr(x,y)

t=zeros(12288,1);
i=zeros(12288,1);
k=zeros(12288,1);
i(4096:8191,1)=x(1:4096,2); %output of the image filter
t(4096:8191,1)=y(1:4096,2);   %output of the tamplate filter
i=i';
z=A(1:4096,1);
    for n=1:8191
k=zeros(12288,1);
k(n:n+4095,1)=t(4096:8191,1);
z(n,2)=i*k;

     end
end

它告诉我:

Error("discreatcorr.m"): Syntax error: Lexical error at line 15, column 0. Encountered:  after : "\';\r\nz=A(1:4096,1);\r\nfor n=1:8191\r\n k=zeros(12288,1);\r\n k(n:n+4095,1)=t(4096:8191,1);\r\n z(n,2)=i*k;\r\n end\r\nend\r\n"

Error("discreatcorr.m"): Syntax error: Lexical error at line 15, column 0. Encountered:  after : "\';\r\nz=A(1:4096,1);\r\nfor n=1:8191\r\n k=zeros(12288,1);\r\n k(n:n+4095,1)=t(4096:8191,1);\r\n z(n,2)=i*k;\r\n end\r\nend\r\n"
Error occurred during "Block Configuration".

尽管代码中的第 15 行没有任何内容

它是在代码末尾给出错误

有什么想法吗?

I wrote this code inside the M Blcok (one of Xilinx blockstes in Simulink):

function z= discorr(x,y)

t=zeros(12288,1);
i=zeros(12288,1);
k=zeros(12288,1);
i(4096:8191,1)=x(1:4096,2); %output of the image filter
t(4096:8191,1)=y(1:4096,2);   %output of the tamplate filter
i=i';
z=A(1:4096,1);
    for n=1:8191
k=zeros(12288,1);
k(n:n+4095,1)=t(4096:8191,1);
z(n,2)=i*k;

     end
end

Its telling me:

Error("discreatcorr.m"): Syntax error: Lexical error at line 15, column 0. Encountered:  after : "\';\r\nz=A(1:4096,1);\r\nfor n=1:8191\r\n k=zeros(12288,1);\r\n k(n:n+4095,1)=t(4096:8191,1);\r\n z(n,2)=i*k;\r\n end\r\nend\r\n"

Error("discreatcorr.m"): Syntax error: Lexical error at line 15, column 0. Encountered:  after : "\';\r\nz=A(1:4096,1);\r\nfor n=1:8191\r\n k=zeros(12288,1);\r\n k(n:n+4095,1)=t(4096:8191,1);\r\n z(n,2)=i*k;\r\n end\r\nend\r\n"
Error occurred during "Block Configuration".

althogh there is nothing in line 15 in the code

it is giving an error at the end of the code

Any Ideas??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

海风掠过北极光 2024-12-28 21:50:58

问题是您的系统将 ' 符号误解为字符串符号。将行 i=i'; 替换为 i=transp(i); 应该可以解决问题。

The problem is that your system misinterprets the ' symbol as string symbol. Replacing the line i=i'; by i=transp(i); should solve the problem.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文