This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Tiles | |
*/ | |
Body { | |
background: #515151; | |
min-height:100%; | |
margin: 0px; | |
} | |
.Tile { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace AppProgram | |
{ | |
class Program | |
{ | |
void Main() | |
{ | |
Console.WriteLine("##Test##"); | |
} | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
clc; | |
close all; | |
clear; | |
n = input('Enter n for cyclic code'); | |
k = input('Enter k for cyclic code'); | |
msg = input('Enter message bits of the length n-k'); | |
N = n-k; %No of shift register% | |
poly = cyclpoly(n,k,'max'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
clc; | |
close all; | |
clear; | |
n = input('Enter n for cyclic code'); | |
k = input('Enter k for cyclic code'); | |
msg = input('Enter message bits of the length n'); | |
N = n-k; %No of shift register% | |
poly = cyclpoly(n,k,'max'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="centered"> | |
<canvas id="sevensegment" height="400px" width="400px"></canvas> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
clc; | |
clear all; | |
close all; | |
img = (imread('deer1.jpg')); | |
T = input('Input Threshold'); | |
T1 = uint32(0); | |
T2 = uint32(0); | |
T1n = 0; |
OlderNewer