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
| """ Functions dealing with rectangular patch antenna.""" | |
| import math | |
| import matplotlib.pyplot as plt | |
| import numpy as np | |
| from sph2cart1 import sph2cart1 | |
| from cart2sph1 import cart2sph1 | |
| from math import cos, sin, sqrt | |
| from mpl_toolkits.mplot3d import Axes3D | |
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
| /* | |
| * Minimalistic implementation of the XModem/YModem protocol suite, including | |
| * a compact version of an CRC16 algorithm. The code is just enough to upload | |
| * an image to an MCU that bootstraps itself over an UART. | |
| * | |
| * Copyright (c) 2014 Daniel Mack <github@zonque.org> | |
| * | |
| * License: MIT | |
| */ |