how write open interval and colse interval by matalb ?
    7 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
    work wolf
 am 15 Mär. 2016
  
    
    
    
    
    Kommentiert: Walter Roberson
      
      
 am 3 Sep. 2016
            how write open interval and colse interval by matalb ? because when write x=0:3 don't give same mean
0 Kommentare
Akzeptierte Antwort
  Walter Roberson
      
      
 am 16 Mär. 2016
        You need to reach in to the Symbolic engine and use the facilities of MuPAD that are not made available to the MATLAB interface.
For example,
x = evalin(symengine, 'Dom::Interval([0], [3])');
The mean of this certainly would be the same as mean(0:3) and the same as mean(linspace(0,3,50000)) .
1 Kommentar
Weitere Antworten (0)
Siehe auch
Kategorien
				Mehr zu MuPAD finden Sie in Help Center und File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

