1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| % FIGURE 1 Energy coins value in USD
clc
clear
close all
x=[7.87138 1.78499 0.60338 0.02528 0.00310 0.00125];
labelx={'Energy Web Token','Grid+','PowerLedger', 'SunContract','WePower' ,'Electrify.Asia'};
couleur=['b' 'r' 'g' 'k' 'y','c'];
figure
hold on
for n=1:6
bar(n,2*x(n)/(max(x)),'facecolor',couleur(n));
%text(n,1.1*x(n),num2str(n),'FontSize',20)
%text(n,-0.1,label(n))
text(n-0.3,2*x(n)/(max(x))+0.1,num2str(x(n)))
h=text(n,-2.5,labelx(n),'FontSize',12);
set(h,'Rotation',90);
end
grid
axis([0 8 -3 3])
axis off
legend('Energy Web Token','Grid+','PowerLedger', 'SunContract','WePower' ,'Electrify.Asia');
grid |