Borrar filtros
Borrar filtros

randomly generate point satisfying quations

3 visualizaciones (últimos 30 días)
zilai si
zilai si el 21 de Mayo de 2019
Comentada: Star Strider el 21 de Mayo de 2019
hello, everyone. I wonder if there is any way to randomly generate 50 points satisfying the following equaiton?
  4 comentarios
KSSV
KSSV el 21 de Mayo de 2019
YOu have any limit on x and y?

Iniciar sesión para comentar.

Respuesta aceptada

Alex Mcaulley
Alex Mcaulley el 21 de Mayo de 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));

Más respuestas (0)

Categorías

Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by