Software Listing of Author : "Pekka Kumpulainen"
- Bullshit Bingo
- License: Shareware
- Price:


Interactive MATLAB version of the old bullshit bingo. Easy to add your own terminology for a new game. Made this a long time ago, especially the PC vocabulary is outdated.. I once printed "Data analysis" versions for students in the last, summary lecture in my signal analysis course and promised extra points in the final exam for bingos. Some of them stayed awake and got the extra points..
- Publisher: Pekka Kumpulainen
- Date Released: 21-02-2013
- Download Size: 10 KB
- Download
- Platform: Matlab, Scripts
- Colored line or scatter plot
- License: Shareware
- Price:


plots a 2-D "line" with c-data as color Makes a surface object and the colouring is controlled by the colormap. Examples: x = 0:0.1:2*pi; color_line(x,sin(x),sin(x)) color_line(x,cos(x),cos(x),'*')
- Publisher: Pekka Kumpulainen
- Date Released: 22-05-2013
- Download Size: 10 KB
- Download
- Platform: Matlab, Scripts
- fix_x_limits
- License: Shareware
- Price:


fix_x_limits fixes all axis in current figure to the maximum span found fix_x_limits(h) fixes XLim property of all axis objects in h or all axes parented under h if figure handles to maximum span found within all axes fix_x_limits(h,limits) fixes all to given limits: [minx maxx] Example: h1 = subplot(2,1,1);hist(rand(100,1)); h2 = subplot(2,1,2);hist(randn(100,1)); fix_x_limits % set the maximum limits to all axes in current figure fix_x_limits([h1 h2],[-3 3]) % Give the limits to the axis objects fix_x_limits(gcf,[-5 4]) % Give the limits to the figure object
- Publisher: Pekka Kumpulainen
- Date Released: 24-02-2013
- Download Size: 10 KB
- Download
- Platform: Matlab, Scripts
- MY_XTICKLABELS
- License: Shareware
- Price:


MY_XTICKLABELS replaces XTickLabels with "normal" texts accepting multiline texts and TEX interpreting and shrinks the axis to fit the texts in the window.
- Publisher: Pekka Kumpulainen
- Date Released: 01-06-2013
- Download Size: 10 KB
- Download
- Platform: Matlab, Scripts
- tight subplot
- License: Shareware
- Price:


Subplot tends to leave a lot of empty space around the axes. Tight_subplot allows to adjust the spacing between the axes as well as the margins around the axes. For example: ha = tight_subplot(3,2,[.01 .03],[.1 .01],[.01 .01]) for ii = 1:6; axes(ha(ii)); plot(randn(10,ii)); end set(ha(1:4),'XTickLabel',''); set(ha,'YTickLabel','')
- Publisher: Pekka Kumpulainen
- Date Released: 21-06-2013
- Download Size: 10 KB
- Download
- Platform: Matlab, Scripts