本人新手,希望大神帮我看下如何修改代码。

function[Cs,CLs,CMs,CRs] = allNormalize ( X,XL,XM,XR )
for l=1:size (X,3)
lamda=generateLamda (XM (:,:,k));
[Cs (:,:,k) ,CLs (:,:,k) ,CMs (:,:,k) ,CRs (:,:,k) ]=...
calculateNormalize (X(;,;,k),XL(;,;,k),XM(;,;,k),XR(;,;,k),lamda);
end
end
显示>> allNormalize
错误: 文件:allNormalize.m 行:4 列:14
MATLAB 运算符异常。
如何进行修改?

 Accepted Answer

0 votes

仅供参考
function[Cs,CLs,CMs,CRs] = allNormalize ( X,XL,XM,XR )
for l=1:size (X,3)
    lamda=generateLamda (XM(:,:,k));
    [Cs(:,:,k) ,CLs(:,:,k) ,CMs(:,:,k) ,CRs(:,:,k)]=...
        calculateNormalize(X(:,:,k),XL(:,:,k),XM(:,:,k),XR(:,:,k),lamda);
end
end

More Answers (0)

Categories

Find more on Neural Simulation in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!