Double integral with rectangle transformation
    3 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
    Mikl Nik
 am 3 Dez. 2020
  
    
    
    
    
    Beantwortet: Bjorn Gustavsson
      
 am 3 Dez. 2020
            Hello! 
I have to calculate  where D = { (x,y): |x| + |y|<= 1} with the rectangle [-1,1] x [-1,1] transformation. I have a question: is D looks similarly like this rectangle and I just have to calculate
 where D = { (x,y): |x| + |y|<= 1} with the rectangle [-1,1] x [-1,1] transformation. I have a question: is D looks similarly like this rectangle and I just have to calculate  
 where D = { (x,y): |x| + |y|<= 1} with the rectangle [-1,1] x [-1,1] transformation. I have a question: is D looks similarly like this rectangle and I just have to calculate
 where D = { (x,y): |x| + |y|<= 1} with the rectangle [-1,1] x [-1,1] transformation. I have a question: is D looks similarly like this rectangle and I just have to calculate  
0 Kommentare
Akzeptierte Antwort
  Bjorn Gustavsson
      
 am 3 Dez. 2020
        No. Check things like this by simply doing things like this:
[x,y] = meshgrid(linspace(-2,2,401));
pcolor(x,y,abs(x)+abs(y)),shading flat,colorbar
hold on
contour(x,y,abs(x)+abs(y),[1 1],'k')
That way you will see what your region of integration looks like.
HTH
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
				Mehr zu Numerical Integration and Differentiation 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!

