photo

Md. Atiqur Rahman


Last seen: 3 years 前 自 2022 起处于活动状态

Followers: 0   Following: 0

统计学

MATLAB Answers

4 个提问
1 个回答

排名
264,981
of 300,813

声誉
0

贡献数
4 个提问
1 个回答

回答接受率
25.0%

收到投票数
0

排名
 of 21,086

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 171,169

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Thankful Level 1

查看徽章

Feeds

排序方式:

已回答
Caesar cipher matlab code
%% To whom it may concern Plaintext= input('Plaintext: ','s') Shift= input('Shift: ') Output = Plaintext+Shift; r=Output-26;...

3 years 前 | 0

| 已接受

提问


Caesar cipher matlab code
Can anyone write a very basic code for caesar cipher that shifts input characters by 5 place?

3 years 前 | 2 个回答 | 0

2

个回答

提问


how can I find the values 88,89,90 and replace them as 65,66,67 using a for loop?
Generator = randi([65,90],[1,10])

3 years 前 | 1 个回答 | 0

1

个回答

提问


Need to create a for loop for this problem
clear all; clc; Key = randi([0,1],[1,2048]); %Key(randperm(size(Key,2))) Plaintext = randi([0,1],[1,256]) %Dividing PLain...

3 years 前 | 1 个回答 | 0

1

个回答

提问


How can I create a 16 round for loop in this problem?
% I need different "In" on every stage and key in each stage would be ciphertext of previous stage clear all; clc; Key = ...

3 years 前 | 1 个回答 | 0

1

个回答