setopt.m
上传用户:speoil
上传日期:2022-06-23
资源大小:224k
文件大小:3k
源码类别:

波变换

开发平台:

Matlab

  1. function option = setopt(opt_par,default);
  2. %    option = setopt(opt_par,default); 
  3. %
  4. %    SETOPT can modify a default option vector with user specified options.
  5. %
  6. %    Input: 
  7. %       opt_par : Users desired option vector
  8. %       default : Program default option vector
  9. %
  10. %    Output: 
  11. %       option : New option vector
  12. %
  13. %    Example:
  14. %       opt_par = [1 2 3 4];
  15. %       default = [1 1 1 1];
  16. %       option = setopt(opt_par,default)
  17. %       option = 1     2     3     4
  18. %
  19. %File Name: setopt.m
  20. %Last Modification Date: 10/26/95 13:06:18
  21. %Current Version: setopt.m 2.4
  22. %File Creation Date: Thu Nov 11 10:40:22 1993
  23. %Author: Jan Erik Odegard  <odegard@ece.rice.edu>
  24. %
  25. %Copyright (c) 2000 RICE UNIVERSITY. All rights reserved.
  26. %Created by Jan Erik Odegard, Department of ECE, Rice University. 
  27. %
  28. %This software is distributed and licensed to you on a non-exclusive 
  29. %basis, free-of-charge. Redistribution and use in source and binary forms, 
  30. %with or without modification, are permitted provided that the following 
  31. %conditions are met:
  32. %
  33. %1. Redistribution of source code must retain the above copyright notice, 
  34. %   this list of conditions and the following disclaimer.
  35. %2. Redistribution in binary form must reproduce the above copyright notice, 
  36. %   this list of conditions and the following disclaimer in the 
  37. %   documentation and/or other materials provided with the distribution.
  38. %3. All advertising materials mentioning features or use of this software 
  39. %   must display the following acknowledgment: This product includes 
  40. %   software developed by Rice University, Houston, Texas and its contributors.
  41. %4. Neither the name of the University nor the names of its contributors 
  42. %   may be used to endorse or promote products derived from this software 
  43. %   without specific prior written permission.
  44. %
  45. %THIS SOFTWARE IS PROVIDED BY WILLIAM MARSH RICE UNIVERSITY, HOUSTON, TEXAS, 
  46. %AND CONTRIBUTORS AS IS AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, 
  47. %BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 
  48. %FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL RICE UNIVERSITY 
  49. %OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 
  50. %EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 
  51. %PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; 
  52. %OR BUSINESS INTERRUPTIONS) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 
  53. %WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR 
  54. %OTHERWISE), PRODUCT LIABILITY, OR OTHERWISE ARISING IN ANY WAY OUT OF THE 
  55. %USE OF THIS SOFTWARE,  EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  56. %
  57. %For information on commercial licenses, contact Rice University's Office of 
  58. %Technology Transfer at techtran@rice.edu or (713) 348-6173
  59. %
  60. %Change History:
  61. %
  62. if (nargin < 2) 
  63.   error('You need two inputs');
  64. end;
  65. len = length(opt_par);
  66. option = zeros(size(default));
  67. option(1:len) = opt_par(1:len);
  68. option = option + (option == 0).*default;