Switch to side-by-side view

--- a
+++ b/Supporting Functions/Tsallis_entro.m
@@ -0,0 +1,12 @@
+function y=Tsallis_entro(x,q)
+
+
+[M,N]=size(x);
+y=zeros(1,N);
+for l=1:N
+    sum1=sum(x(:,l)-(x(:,l)).^q);
+    sum2=sum1/(q-1);
+    y(1,l)=sum2;
+end
+
+end
\ No newline at end of file