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

11 visualizzazioni (ultimi 30 giorni)
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;

Risposte (1)

Alan Stevens
Alan Stevens il 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)

Categorie

Scopri di più su MATLAB in Help Center e File Exchange

Prodotti


Release

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by