-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsp_mat2latex.m
121 lines (94 loc) · 2.57 KB
/
sp_mat2latex.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
function [val,row_ip,col_ip] = sp_mat2latex(A,sp_type)
%Author: K. Yfanti, AM 1054972, Date: 6/1/2022
if sp_type ~= "CSR" && sp_type ~= "CSC"
error('sp_type must be either CSR or CSC.')
end
m = size(A, 1);
%%%%%%%CSR%%%%%%%
if sp_type == "CSR"
%ftiaxnoume thn CSR domh
[col_ip, row, val] = find(A.');
row_ip = [1; cumsum(histc(row, 1:m)) + 1];
%entoles latex
val_size = size(val,1);
%gia ta values
fprintf('$$ val = \\begin{tabular}{|');
for i=1:val_size
fprintf('l|');
end
fprintf('}\\hline \n');
fprintf('%.4f ',val(1));
for i=2:val_size
fprintf('&%.4f ',val(i));
end
fprintf('\\\\ \\hline \n');
fprintf('\\end{tabular}$$ \n');
%gia to IA
fprintf('$$ IA = \\begin{tabular}{|');
for i=1:val_size
fprintf('l|');
end
fprintf('}\\hline \n');
fprintf('%d ',col_ip(1));
for i=2:val_size
fprintf('&%d ',col_ip(i));
end
fprintf('\\\\ \\hline \n');
fprintf('\\end{tabular}$$ \n');
%gia to JA
fprintf('$$ JA = \\begin{tabular}{|');
for i=1:m+1
fprintf('l|');
end
fprintf('}\\hline \n');
fprintf('%d ',row_ip(1));
for i=2:m+1
fprintf('&%d ',row_ip(i));
end
fprintf('\\\\ \\hline \n');
fprintf('\\end{tabular}$$ \n');
end
%%%%%%%CSC%%%%%%%
if sp_type == "CSC"
[row_ip, col, val] = find(A);
col_ip = [1; cumsum(histc(col, 1:m)) + 1];
%entoles latex
val_size = size(val,1);
%gia ta values
fprintf('$$ val = \\begin{tabular}{|');
for i=1:val_size
fprintf('l|');
end
fprintf('}\\hline \n');
fprintf('%.4f ',val(1));
for i=2:val_size
fprintf('&%.4f ',val(i));
end
fprintf('\\\\ \\hline \n');
fprintf('\\end{tabular}$$ \n');
%gia to IA
fprintf('$$ IA = \\begin{tabular}{|');
for i=1:val_size
fprintf('l|');
end
fprintf('}\\hline \n');
fprintf('%d ',row_ip(1));
for i=2:val_size
fprintf('&%d ',row_ip(i));
end
fprintf('\\\\ \\hline \n');
fprintf('\\end{tabular}$$ \n');
%gia to JA
fprintf('$$ JA = \\begin{tabular}{|');
for i=1:m+1
fprintf('l|');
end
fprintf('}\\hline \n');
fprintf('%d ',col_ip(1));
for i=2:m+1
fprintf('&%d ',col_ip(i));
end
fprintf('\\\\ \\hline \n');
fprintf('\\end{tabular}$$ \n');
end
end