close Warning: Can't use blame annotator:
svn blame failed on trunk/src/round_uvmat.m: 28 - Can't close file '/tmp/svn-tovuRg': No space left on device

source: trunk/src/round_uvmat.m @ 1103

Last change on this file since 1103 was 1078, checked in by sommeria, 4 years ago

various updates

File size: 252 bytes
RevLine 
1% provide a simple round value of Val of the form  1, 2 , 5 *10^n
2function RoundVal= round_uvmat(Val)
3
4ord=10^(floor(log10(Val)));%order of magnitude
5if Val/ord >= 5
6    RoundVal=5*ord;
7elseif Val/ord>=2
8    RoundVal=2*ord;
9else
10    RoundVal=ord;
11end
12
Note: See TracBrowser for help on using the repository browser.