randomly generate point satisfying quations
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
zilai si
am 21 Mai 2019
Kommentiert: Star Strider
am 21 Mai 2019
hello, everyone. I wonder if there is any way to randomly generate 50 points satisfying the following equaiton?
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/220390/image.png)
4 Kommentare
Akzeptierte Antwort
Alex Mcaulley
am 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 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Calculus finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!