Compare commits
No commits in common. "a54f71a84889e6d05525789ef16c27579256ba90" and "55562889eb90fbb1589b291a39fc0b26ab008252" have entirely different histories.
a54f71a848
...
55562889eb
@ -48,6 +48,8 @@
|
|||||||
"metadata": {},
|
"metadata": {},
|
||||||
"outputs": [],
|
"outputs": [],
|
||||||
"source": [
|
"source": [
|
||||||
|
"A = np.random.randint(-100, 100, size=(4, 7));\n",
|
||||||
|
"\n",
|
||||||
"X = ['a', 'b', 'c', 'd', 'e'];\n",
|
"X = ['a', 'b', 'c', 'd', 'e'];\n",
|
||||||
"Y = [2, 3, 5, 7, 11, 13, 17];\n",
|
"Y = [2, 3, 5, 7, 11, 13, 17];\n",
|
||||||
"Z = ['α', 'β', 'γ', 'δ'];\n",
|
"Z = ['α', 'β', 'γ', 'δ'];\n",
|
||||||
@ -66,6 +68,8 @@
|
|||||||
"metadata": {},
|
"metadata": {},
|
||||||
"outputs": [],
|
"outputs": [],
|
||||||
"source": [
|
"source": [
|
||||||
|
"A = np.random.randint(-100, 100, size=(4, 7));\n",
|
||||||
|
"\n",
|
||||||
"X = randomset_alphabet(N=3);\n",
|
"X = randomset_alphabet(N=3);\n",
|
||||||
"Y = randomset_integers(N=5);\n",
|
"Y = randomset_integers(N=5);\n",
|
||||||
"Z = randomset_greek(N=7);\n",
|
"Z = randomset_greek(N=7);\n",
|
||||||
|
@ -30,8 +30,7 @@ T2 = TypeVar('T2');
|
|||||||
|
|
||||||
SCALE = (1., 4.);
|
SCALE = (1., 4.);
|
||||||
OFFSET = (3., 0.);
|
OFFSET = (3., 0.);
|
||||||
HMARGIN = 0.1;
|
MARGIN = 0.1;
|
||||||
VMARGIN = 0.2;
|
|
||||||
N_RESOLUTION = 100;
|
N_RESOLUTION = 100;
|
||||||
ANNOTATE_OFFSET = (0, 10);
|
ANNOTATE_OFFSET = (0, 10);
|
||||||
FONTSIZE_PTS = 10;
|
FONTSIZE_PTS = 10;
|
||||||
@ -85,10 +84,9 @@ class Functions:
|
|||||||
'horizontalalignment': 'center',
|
'horizontalalignment': 'center',
|
||||||
'color': 'forestgreen',
|
'color': 'forestgreen',
|
||||||
});
|
});
|
||||||
axs.set_facecolor((0.9,0.9,0.9))
|
|
||||||
mplot.xlabel('');
|
mplot.xlabel('');
|
||||||
mplot.ylabel('');
|
mplot.ylabel('');
|
||||||
mplot.margins(x=HMARGIN, y=VMARGIN);
|
mplot.margins(x=MARGIN, y=MARGIN);
|
||||||
|
|
||||||
origin = np.asarray((0., 0.));
|
origin = np.asarray((0., 0.));
|
||||||
offset = np.asarray(OFFSET);
|
offset = np.asarray(OFFSET);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user