How to implement this algorithm?

1 回表示 (過去 30 日間)
Darsana P M
Darsana P M 2017 年 9 月 19 日
コメント済み: Darsana P M 2017 年 10 月 19 日
I have a doubt in the above code. I want to declare x=x1,x2,x3..x8 But i got an error
clc;
clear all;
close all;
x=[0 1 1 0 1 1 0 1];
y=[0 0 0 0 0 0 0 0];
for j=1:8
x[j] = [xj:xj+1];
Yj = (xor(yj-1,xj)*H);
end
Y
The error was: Undefined function or variable 'xj'.
Error in counter1 (line 9) x=[xj:xj+1];
>> counter1 Error: File: counter1.m Line: 9 Column: 8 Unbalanced or unexpected parenthesis or bracket.
  7 件のコメント
John D'Errico
John D'Errico 2017 年 10 月 19 日
Exactly. The problem here is not with how to do bitwise operations in MATLAB, but that you seem to not understand fundamental ideas in MATLAB, like how to index an array. Learn to use MATLAB first.
Darsana P M
Darsana P M 2017 年 10 月 19 日
ok.Thanks

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

回答 (0 件)

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by