Finding the product within an interval
    2 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
    Noah Kebschull
 il 19 Nov 2017
  
    
    
    
    
    Commentato: Noah Kebschull
 il 19 Nov 2017
            I have 250 element row vector of random numbers between intervals (-4.5, 5.5). Once I create that vector, how would I find the product of all elements between intervals (2.3, 2.6)?
0 Commenti
Risposta accettata
  Roger Stafford
      
      
 il 19 Nov 2017
        
      Modificato: Roger Stafford
      
      
 il 19 Nov 2017
  
      If v is your vector of random numbers, do this:
   p = prod(v(v>=2.3 & v<=2.6)); % The desired product
Più risposte (0)
Vedere anche
Categorie
				Scopri di più su Random Number Generation in Help Center e File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

