The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
22 views

Tool to generate parametric equations

I'm looking for a tool that allows me to create shapes (along the lines of a rendering application) which will also generate the parametric equations of the various shapes. I need to use it for some ...
0
votes
0answers
38 views

Log-Cumulative Hazard Plot in R

Pretty much I have fitted a Weibull Distribution so that it contains all the significant variables i the model. My code is; fit <- weibreg(Surv(t, cen) ~ treat + hosp + age + anti + cort, ...
-1
votes
0answers
12 views

How do I find the point of intersection of two segments using vectors? [closed]

I have two segments. Segment A is [39, 62] + t[205, 375] Segment B is [-14, 239] + t[258, 198] How can I find the point where they cross? I know of the equation t2 = (v1x(A2y - A1y) + ...
-2
votes
1answer
47 views

How can I find a normal vector of a 2D line?

I have a line with point a, (6, 12) and point b (45, 18). To describe this line using vectors, the equation is L = [6, 12] +t [39, 6] How would I go about finding the normal to this line?
1
vote
2answers
116 views

Plot survival and hazard function of survreg using curve()

I have a survreg model Call: survreg(formula = Surv(time = (ev.time), event = ev) ~ age, data = my.data, dist = "weib") Value Std. Error z p (Intercept) 4.0961 0.5566 ...
0
votes
0answers
82 views

Hyperbolic Paraboloid openGL Code

expected image: http://i.stack.imgur.com/Fnf5y.jpg what i get: http://i.stack.imgur.com/pzeC9.png I would like to generate a Hyperbolic paraboloid similar to the attached link(expected).. First i ...
3
votes
1answer
64 views

plotting matrix equation in R

I'm new to R and I need to plot the quadratic matrix equation: x^T A x + b^T x + c = 0 in R^2, with A being a 2x2, b a 2x1, and c a constant. The equation is for a boundary that defines classes ...
0
votes
1answer
75 views

How to plot parametric functions between infinite limits?

How to plot these parametric functions with infinite limits to get a circle using matlab? x(t)=2t/(1+t.^2) y(t)=(1-t.^2)/(1+t.^2)
0
votes
1answer
75 views

Is there a way to get a parametric solution to matrix using matrix solver from some lin. algebra java library?

All the matrix solvers I've come across require the matrices to be square and invertible, but what about matrices that are not square and have multiple solutions...how would I go about finding a ...
-1
votes
1answer
112 views

Plot a two degree equation like “x^2 + y^2 + x*y + x + 1 = 0” using gnuplot [closed]

I want to plot a two degree equation like "x^2 + y^2 + x*y + x + 1 = 0" using gnuplot ( for a range of x&y). I'm not sure how to do this. I saw parametric in gnuplot (seen in some forums). But ...
3
votes
2answers
361 views

plotting a parametric curve using an ordered data set in matlab

This is an elementary question, which I hope has an easier solution that the one I have: I have an Nx2 data A set which is a parametric curve in the 2D plane. The set A is ordered, it is the ...
0
votes
0answers
123 views

Curve equation from Contour image in C++

Here is my problem. I need to work on a curve equation but I only have a contour image to start with such as this image. What I need to do with this is to get a "precise approximate" of the contour ...
2
votes
2answers
1k views

Detecting intersecting lines after a hough transform

Using Hough transform in Matlab,detected some lines. Using the end points of these lines I have plotted them. I cant understand how I can find intersecting lines when I have all the variables. Line7 ...
1
vote
1answer
1k views

3D parametric graph in Gnuplot

Currently, I'm trying to create a 3d parametric graph similar to this: which can be found here: http://gnuplot.sourceforge.net/demo/surface1.html. With script here: ...
1
vote
1answer
626 views

How do i draw an accurate parametric eq curve given gain, freq, and q?

After a lot of googling I still can't find an equation to give me the path I need. I am creating a gui for a parametric eq and just can't get the curve drawing to look or feel accurate. Although I ...
24
votes
8answers
4k views

Plot a heart in R [duplicate]

Possible Duplicate: Equation-driven smoothly shaded concentric shapes How could I plot a symetrical heart in R like I plot a circle (using plotrix) or a rectangle? I'd like code for this ...
12
votes
2answers
734 views

Equation-driven smoothly shaded concentric shapes

Background Looking to create interesting video transitions (in grayscale). Problem Given equations that represent a closed, symmetrical shape, plot the outline and concentrically shade the shape ...