randomly generate point satisfying quations
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
zilai si
le 21 Mai 2019
Commenté : Star Strider
le 21 Mai 2019
hello, everyone. I wonder if there is any way to randomly generate 50 points satisfying the following equaiton?
4 commentaires
Réponse acceptée
Alex Mcaulley
le 21 Mai 2019
If you have symbolic toolbox:
syms x y
eqn = x.^2+(3/2*y-sqrt(abs(x)))^2 == 3;
z(x) = solve(eqn,y);
xrand = rand(1,100); %Some random numbers
yrand = cell2mat(cellfun(@double,z(xrand),'UniformOutput',false));
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Calculus dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!