Advertisement
mayankjoin3

Project 3 Input

Nov 26th, 2022
752
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.50 KB | None | 0 0
  1.     constant_fk2d=0.75
  2.     multiplying_factor_3d=0.5
  3.     Shear_velocity=2.6**3
  4.    
  5.    
  6.    
  7. print('1. C','2. S','3. A','4. C & S','5. C & A','6. S & A','7. C & S & A','8. all combine',sep='\n')
  8. tch = int(input('Chose Filtering Method From Above:'))
  9.  
  10.  
  11. print('1. previous point','2. 2*last-2nd_last','3. overall_mean',
  12.       '4. 12_point_strategy','5. mean of previous 2 point',
  13.       '6. all seqential','7. all parallel',sep='\n')
  14. sch = int(input('Chose Replacement Method From Above:'))
  15.  
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement