Recent content by button_ger

  1. B

    Mathematica Why does my code only create points instead of lines?

    I have solved the problem. I changed ... sol = Table[ NSolve[{radius^2 == (x - radius)^2 + (y - radius)^2, y == lineslope*x + i}, {x, y}] , {i, lineshift1, lineshift2, 20}] Show[Graphics[Line[{{x, y}, {x, y}}]] /. sol] in... sol = Table[ NSolve[{x,y}/.{radius^2 == (x - radius)^2...
  2. B

    Mathematica Why does my code only create points instead of lines?

    Hy Guys I want to create some lines. That lines should be created by the solution of an equation. This equation has in my limits 1 or 2 solutions. The first euation is a circle. The second is a line. lineslope, radius, lineshift1, lineshift2 is defined before. sol = Table[ NSolve[{radius^2...
  3. B

    Mathematica Dynamic Solution for Variable Slider in Mathematica 7 with Cosine Function

    Great. This solved my problem. Thanks a lot. But now I have an analogical problem. When I use "solution = Dynamic[distance/Cos[angle]]" I cannot use solution in the next line dynamicaly like solution2 = solution * 2 How can I do this?
  4. B

    Mathematica Dynamic Solution for Variable Slider in Mathematica 7 with Cosine Function

    hey. How can I realize a dynamic solution? The first variable slider should be simply d and the second a Cos [x degrees]? Slider[Dynamic[angle], {0., 90.} Degree] Slider[Dynamic[distance], {0, 1000.}] Dynamic[distance]/ Cos[Dynamic[angle] ] ... does not work. The solution will...
  5. B

    Mathematica How to plot 3D cylinder shapes in Mathematica?

    I tired to do with list = Partition[Import["Sites/IWS/testFile.txt", "Table"], 2] Graphics3D[Cylinder[list]] but in that way I am not able to change the cylinder-radius. How can I add this parameter in my list?
  6. B

    Mathematica How to plot 3D cylinder shapes in Mathematica?

    Sry. The data-file contains start and end-point of the cylinders (lines). I want to create a huge number of cylinders with external data. How can I do that? I don't know how to format the external data and how I have to do the command in mathematica.
  7. B

    Mathematica How to plot 3D cylinder shapes in Mathematica?

    hey How can i do that? Can anyone of you help me?greets button MATHEMATICA
  8. B

    Plotting a Line in 3D from a List of Points

    great support in this forums. Thanks a lot DaleSpam. greets button
  9. B

    Plotting a Line in 3D from a List of Points

    Thank you. I have a long list with points from an external file. How can i do this? {{3,6,5},{2,4,1},{3,5,4},{6,7,4},{3,2,1},{1,1,1},...} Every 2nd point should be the end-point of the line. Or is it better to make it like this? {{3,6,5,2,4,1},{3,5,4,6,7,4},{3,2,1,1,1,1},...}
  10. B

    Plotting a Line in 3D from a List of Points

    Hey. Is it possible to plot a line in 3D from one point to another? The source of the points is a list.