フィルターのクリア

Unable to perform assignment because the size of the left side is 4-by-4 and the size of the right side is 2-by-4.

1 回表示 (過去 30 日間)
Hello,
I am trying to create block diagonal if dimension d is greater than 2. However I have this error:
Unable to perform assignment because the size of the left side is 4-by-4 and the size of the right side is 2-by-4.
My code is here:
function [A,B] = CH2d(d)
A=zeros(d,d,2,d);
B=A;
projectors_of_sigma_x = [1/sqrt(2)*[1;1],1/sqrt(2)*[1;-1]];
for k = 1:d
for l =1:d
if d > 2
A(:,:,1,k) = blkdiag(A(:,:,1,k));
end
A(:,:,1,k)=repmat(projectors_of_sigma_x(:,k),1,d);
end
end
end
  4 件のコメント
Ameer Hamza
Ameer Hamza 2020 年 6 月 27 日
See my answer to your other similar question.
Gözde Üstün
Gözde Üstün 2020 年 6 月 27 日
Thanks and I replied you via other similar question

サインインしてコメントする。

回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

製品


リリース

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by