CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

| Download

GAP 4.8.9 installation with standard packages -- copy to your CoCalc project to get it

Views: 418346
1
#include"typedef.h"
2
#include"getput.h"
3
#include"bravais.h"
4
#include"matrix.h"
5
6
main (int argc, char *argv[])
7
{
8
int anz,
9
i;
10
11
matrix_TYP **F;
12
13
read_header(argc, argv);
14
if(FILEANZ != 1)
15
{
16
printf("usage: Full file\n");
17
printf(" where file contains a matrix_TYP.\n");
18
printf("\n");
19
printf(" Outputs the given matrices in full form, ie. without\n");
20
printf(" abbreviation like 3d0, 3x0.\n");
21
printf("\n");
22
printf("\n");
23
if (is_option('h')){
24
exit(0);
25
}
26
else{
27
exit(31);
28
}
29
}
30
31
F = mget_mat(FILENAMES[0],&anz);
32
33
printf("#%d\n",anz);
34
35
for (i=0;i<anz;i++){
36
Check_mat(F[i]);
37
put_mat(F[i],NULL,NULL,1);
38
}
39
40
exit(0);
41
}
42
43