Datasets:

Size:
< 1K
ArXiv:
Libraries:
Datasets
License:
File size: 274 Bytes
b7ec6bb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
load end4_groundTruth.mat;

nEnd = length (cood);

for i = 1 : nEnd
    subplot (2,4, i);
    plot (M(:,i));
    title(cood(i));
    grid on;
    
    a2d = reshape (A(i,:), [nRow nCol]);
    subplot (2,4, i+nEnd);
    imshow (a2d, []);
    title(cood(i));
end