Dhinesh Kumar
Followers: 0 Following: 0
統計
All
Feeds
解決済み
Draw 'C'.
Given x as input, generate a x-by-x matrix 'C' using 0 and 1. example: x=4 ans= [0 1 1 1 1 0 0 0 ...
2年以上 前
解決済み
Draw 'B'
Draw a x-by-x matrix 'B' using 1 and 0. (x is odd and bigger than 4) Example: x=5 ans= [1 1 1 1 0 1 0 0 0 1 ...
2年以上 前
解決済み
Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...
約3年 前
回答済み
caesar cyphor encryption problem .
function txt = caesar(txt,key) txt = double(txt) + key; first = double(' '); last = double('~'); % use mod t...
caesar cyphor encryption problem .
function txt = caesar(txt,key) txt = double(txt) + key; first = double(' '); last = double('~'); % use mod t...
約4年 前 | 0