How to run encoder.m file .following message appears: Undefined function or variable 'raw_message'? appears as i press run button
1 回表示 (過去 30 日間)
古いコメントを表示
How to run encoder.m file downloaded from the matlab website .
Undefined function or variable 'raw_message'? appears as i press run button
2 件のコメント
Image Analyst
2018 年 12 月 13 日
Either pass in raw_message via the argument list, or assign it a value before you try to use it.
Harshit verma
2020 年 10 月 15 日
%% Manchester Encoding
clear all; close all; clc;
len_input = 20;
menchester_input = floor(1.8*rand(1,len_input));
for i = 1:1:len_input
if menchester_input(i) == 1
menchester_output(2*(i-1) + 1 : 2*(i-1) + 2) = [0 1];
else
menchester_output(2*(i-1) + 1 : 2*(i-1) + 2) = [1 0];
end
end
[Menchester_Decode_out] = Menchester_Decoding(menchester_output);

回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Adding custom doc についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!