std::weibull_distribution<RealType>:: weibull_distribution
      From cppreference.net
     
     
      
       <
       
        cpp
       
        |
       
        numeric
       
        |
       
        random
       
        |
       
        weibull distribution
       
      
     
     
        
         C++
        
        
         
          
           
          
          
         
        
       
       
        
         Numerics library
        
        
         
          
           
            
          
          
          
         
        
       
       | Common mathematical functions | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Mathematical special functions (C++17) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Mathematical constants (C++20) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Basic linear algebra algorithms (C++26) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Data-parallel types (SIMD) (C++26) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Floating-point environment (C++11) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Complex numbers | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
              
               Numeric array (
               
                valarray
               
               )
              
              | 
            |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Pseudo-random number generation | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Bit manipulation (C++20) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Saturation arithmetic (C++26) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Factor operations | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
              
  | 
             
              
  | 
            ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Interpolations | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
              
  | 
             
              
  | 
            ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Generic numeric operations | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
              
  | 
             
              
  | 
            ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| C-style checked integer arithmetic | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
              
  | 
            |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
        
         Pseudo-random number generation
        
        
         
          
           
            
          
          
          
         
        
       
       
              
  | 
             
              
  | 
            |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
        
         
          std::weibull_distribution
         
        
        
         
          
           
            
          
          
          
         
        
       
       | Member functions | ||||
| 
               
                
                 
                  
                   weibull_distribution::weibull_distribution
                  
                 
                
                
               | 
            ||||
| Generation | ||||
| Characteristics | ||||
| Non-member functions | ||||
| 
               
                
                 
                  
                   (C++11)
                  
                 
                 
                  
                   (C++11)
                  
                  
                   (until C++20)
                  
                 
                
                
               | 
            ||||
| 
               
                
                 
                  
                   (C++11)
                  
                 
                 
                  
                   (C++11)
                  
                 
                
                
               | 
            
| 
           
           
            weibull_distribution
            
             (
            
            
             )
            
            
             :
            
            weibull_distribution
            
             (
            
            
             1.0
            
            
             )
            
            
             {
            
            
             }
            
           
           
          | 
         (1) | (C++11부터) | 
| 
           
           
            
             explicit
            
            weibull_distribution
            
             (
            
            RealType a, RealType b
            
             =
            
            
             1.0
            
            
             )
            
            
             ;
            
           
           
          | 
         (2) | (C++11부터) | 
| 
           
           
            
             explicit
            
            weibull_distribution
            
             (
            
            
             const
            
            param_type
            
             &
            
            params
            
             )
            
            
             ;
            
           
           
          | 
         (3) | (C++11부터) | 
새로운 분포 객체를 생성합니다.
       
        2)
       
       
        
         a
        
       
       와
       
        
         b
        
       
       를 분포 매개변수로 사용합니다.
      
      
       
        3)
       
       
        
         params
        
       
       를 분포 매개변수로 사용합니다.
      
      매개변수
| a | - | a 분포 매개변수 (형상) | 
| b | - | b 분포 매개변수 (척도) | 
| params | - | 분포 매개변수 집합 | 
결함 보고서
다음 동작 변경 결함 보고서는 이전에 발표된 C++ 표준에 소급 적용되었습니다.
| DR | 적용 대상 | 게시된 동작 | 올바른 동작 | 
|---|---|---|---|
| P0935R0 | C++11 | 기본 생성자가 explicit였음 | implicit로 변경됨 |