How can I solve this error : Invalid text character. Check for unsupported symbol, invisible character, or pasting of non-ASCII characters.

14 views (last 30 days)
n=input('donner le nombre de points') k=0; for i=1:n u1=rand;u2=rand; x=2*u1; y=2*u2; if(y<=[(4*x)/(x^2 +1)]-[x*(x-12)]) k=k+1; end end Surface = k/n;

Answers (1)

Alan Stevens
Alan Stevens on 14 Mar 2022
This works for me:
n=input('donner le nombre de points: ');
k=0;
for i=1:n
u1=rand;u2=rand;
x=2*u1;
y=2*u2;
if(y<=[(4*x)/(x^2 +1)]-[x*(x-12)])
k=k+1;
end
end
Surface = k/n;
disp(Surface)

Categories

Find more on MATLAB in Help Center and File Exchange

Products


Release

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!