Recent content by Lucas94
-
MATLAB How to do a double integral on matlab?
My bad i forgot to write it on the integrand , the denominator should be ##(xy^2 + 1)^2## soo my definition of fun is correct- Lucas94
- Post #5
- Forum: MATLAB, Maple, Mathematica, LaTeX
-
MATLAB How to do a double integral on matlab?
##∫ ∫ xy/(xy^2 +1)^2## over the region bounded by 2 ≤ x ≤ 3 and 2*sqrt(1+x) ≤ y ≤ 2*sqrt(2+4x)- Lucas94
- Post #3
- Forum: MATLAB, Maple, Mathematica, LaTeX
-
MATLAB How to do a double integral on matlab?
Hey! I want to do a double integral calculation of this problem##∫∫ xy/(xy^2 +1)^2## over the region bounded by 2 ≤ x ≤ 3 and 2*sqrt(1+x) ≤ y ≤ 2*sqrt(2+4x) on MATLAB and i have tried the following syntax: clc clear all fun=@(x,y) x*y./((x*y.^2+1).^2); ymax=@(x) 2*sqrt(2+4*x)...- Lucas94
- Thread
- Double integral Integral Integral calculus Matlab Matlab code Multivariable calculus
- Replies: 4
- Forum: MATLAB, Maple, Mathematica, LaTeX
-
Make a circle in square that is split 8x8 parts?
ive figured it out now! Thanks for your help!- Lucas94
- Post #6
- Forum: Engineering and Comp Sci Homework Help
-
Make a circle in square that is split 8x8 parts?
Yes I'm trying to draw a circle in a checkerboard (8x8 squares)- Lucas94
- Post #4
- Forum: Engineering and Comp Sci Homework Help
-
Make a circle in square that is split 8x8 parts?
Np = 400; % Number of Particles t = 10^3; % Time M = zeros(Np,2); % Predefined Msaf = zeros(Np,2); % Predefined modi = 0.1; % Movement modification r = 8; % Radius rng('shuffle') % More random % Circle cv = linspace(0,2*pi,100); cx = r*cos(cv)...- Lucas94
- Post #3
- Forum: Engineering and Comp Sci Homework Help
-
Make a circle in square that is split 8x8 parts?
Sorry if i may sound little unclear, english is not my first langue. I I am looking for a way to create a circle that is in a square cut in 8x8 in matlab. I would be glad if someone could give me a hand. Thanks!- Lucas94
- Thread
- Circle Matlab parts Split Square
- Replies: 5
- Forum: Engineering and Comp Sci Homework Help