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; | |
| FigHandle = figure('Menu','none','Position', [350, 200, 700, 500]); | |
| xSignal = [ 1 0 0 1 1 0 1 0 1 1 ]; | |
| n = 1; | |
| signalLength = length(xSignal); | |
| xSignal(signalLength+1) = 1; |
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; | |
| FigHandle = figure('Menu','none','Position', [350, 200, 700, 500]); | |
| xSignal = [ 1 0 0 1 1 0 1 0 1 1 ]; | |
| bitPeriod = 0.1; | |
| Amplitude1 = 5; | |
| Amplitude2 = 2.5; |
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; | |
| FigHandle = figure('Menu','none','Position', [350, 200, 700, 500]); | |
| xSignal = [ 1 0 0 1 1 0 1 0 1 1 ]; | |
| n = 1; | |
| signalLength = length(xSignal); | |
| xSignal(signalLength+1) = 1; |
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; | |
| FigHandle = figure('Menu','none','Position', [350, 200, 700, 500]); | |
| xSignal = [ 1 0 0 1 1 0 1 0 1 1 ]; | |
| n = 1; | |
| signalLength = length(xSignal); | |
| xSignal(signalLength+1) = 1; |
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
| #!/bin/bash | |
| LIBPATH="" | |
| PROJECTDIR=$(pwd) | |
| BINDIR=$PROJECTDIR"/bin" | |
| #Your Project Source Directory | |
| SRCDIR=$PROJECTDIR"/src/..." | |
| #Your Runnabple Main Function ,java File | |
| RUNPATH="com.xxx.yyy" | |
| function GenerateLibrariPath { |
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
| #!/bin/bash | |
| buildFile=$1 | |
| runFile="${buildFile%.*}.exe" | |
| RED='\033[0;31m' | |
| GRE='\033[0;32m' | |
| BBLU='\033[1;34m' | |
| NOCOLOR='\033[0m' | |
| if [[ -n "$buildFile" ]]; then |
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
| package com.httpserver.core; | |
| import java.io.IOException; | |
| import java.io.OutputStream; | |
| import java.io.StringWriter; | |
| import java.io.UnsupportedEncodingException; | |
| import java.net.InetSocketAddress; | |
| import java.net.URLDecoder; | |
| import java.nio.charset.Charset; | |
| import java.nio.charset.StandardCharsets; |
NewerOlder