Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. 3D Graphing Package, Microsoft Mathematics

3D Graphing Package, Microsoft Mathematics

Scheduled Pinned Locked Moved The Lounge
comdata-structuresquestion
33 Posts 14 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • C C P User 3

    First glance, gorgeous. Will it allow me to export a nice JPEG or PNG file ?

    R Offline
    R Offline
    rbuchana
    wrote on last edited by
    #10

    Yep... https://www.gnu.org/software/octave/doc/interpreter/Printing-and-Saving-Plots.html#XREFsaveas[^]

    1 Reply Last reply
    0
    • C C P User 3

      Second glance; uh-oh, learning curve, big time. I want to plug in my Z = f(x,y) equation (which is a bit complex) press a button and see the graph ready for my use. The equation has sums, differences, two levels of division operations, a max, a min, and an abs function vicariously scattered within those operations. Can Octave take an equation and derive the 3D graph with the push of a button ?

      R Offline
      R Offline
      rbuchana
      wrote on last edited by
      #11

      Not with a push of a button, but certainly with a small (or large-ish) m-file. Post the equation somewhere. It can't be the worst equation in the world.

      1 Reply Last reply
      0
      • C C P User 3

        I'm trying to get a 3D graph prepared. I just wasted two days on this app, Graphing Calculator 3D[^] but the author decided on some sort of copy protection or cripple ware or whatever you want to call it. i.e., It makes an excellent graph of Z = f(x,y) but then you can't use that image; e.g., no JPEG, no PNG, in fact, you can't even do a screen print. My motto is: Just say no to any and all such apps. So I came across an app from Microsoft, Mathematics 4.0[^] Before I go wasting another two days on a freeware app that isn't free, can anyone tell me if Microsoft Mathematics will... -1- Generate a good looking graph, Z = f(x,y) -2- Save that image in a file for use by other apps

        M Offline
        M Offline
        Mark_Wallace
        wrote on last edited by
        #12

        I remember a similar problem with a graphics app some years back (Xera? Xara? something like that). It turned out that, because any graphics file produced by such an has to be updated frequently, and disabling such an integrated/complicated part of the app would not have nice results, it actually created the graphics file in their temp storage, but with an unknown file extension. Take a poke around; your work might be there (rename any "suspect" files as jpg/gif/whatever, and open them with IrfanView, which will tell you if they're graphics files with the wrong extension).

        I wanna be a eunuchs developer! Pass me a bread knife!

        J 1 Reply Last reply
        0
        • M Mark_Wallace

          I remember a similar problem with a graphics app some years back (Xera? Xara? something like that). It turned out that, because any graphics file produced by such an has to be updated frequently, and disabling such an integrated/complicated part of the app would not have nice results, it actually created the graphics file in their temp storage, but with an unknown file extension. Take a poke around; your work might be there (rename any "suspect" files as jpg/gif/whatever, and open them with IrfanView, which will tell you if they're graphics files with the wrong extension).

          I wanna be a eunuchs developer! Pass me a bread knife!

          J Offline
          J Offline
          Jeremy Falcon
          wrote on last edited by
          #13

          Mark_Wallace wrote:

          (Xera? Xara? something like that).

          Oh wow, I haven't thought about that app in years! And appearently it's still around: Xara 3D[^]

          Jeremy Falcon

          M 1 Reply Last reply
          0
          • J Jeremy Falcon

            Mark_Wallace wrote:

            (Xera? Xara? something like that).

            Oh wow, I haven't thought about that app in years! And appearently it's still around: Xara 3D[^]

            Jeremy Falcon

            M Offline
            M Offline
            Mark_Wallace
            wrote on last edited by
            #14

            Jeremy Falcon wrote:

            Oh wow, I haven't thought about that app in years! And appearently it's still around: Xara 3D[^]

            That's the guy! It was pretty damned cool, in the day. [edit] Holy cr@p! It used to be pretty damned cool and easy to use, but they've made real improvements! But they're not paying me for this, so I'll shut up.

            I wanna be a eunuchs developer! Pass me a bread knife!

            1 Reply Last reply
            0
            • C C P User 3

              I'm trying to get a 3D graph prepared. I just wasted two days on this app, Graphing Calculator 3D[^] but the author decided on some sort of copy protection or cripple ware or whatever you want to call it. i.e., It makes an excellent graph of Z = f(x,y) but then you can't use that image; e.g., no JPEG, no PNG, in fact, you can't even do a screen print. My motto is: Just say no to any and all such apps. So I came across an app from Microsoft, Mathematics 4.0[^] Before I go wasting another two days on a freeware app that isn't free, can anyone tell me if Microsoft Mathematics will... -1- Generate a good looking graph, Z = f(x,y) -2- Save that image in a file for use by other apps

              R Offline
              R Offline
              RedDk
              wrote on last edited by
              #15

              How about: K3DSurf: Math for fun[^] CIO; might do what you expect it to do.

              1 Reply Last reply
              0
              • C C P User 3

                Second glance; uh-oh, learning curve, big time. I want to plug in my Z = f(x,y) equation (which is a bit complex) press a button and see the graph ready for my use. The equation has sums, differences, two levels of division operations, a max, a min, and an abs function vicariously scattered within those operations. Can Octave take an equation and derive the 3D graph with the push of a button ?

                M Offline
                M Offline
                Matt T Heffron
                wrote on last edited by
                #16

                Not quite "push of a button" but the mesh function is what you need. You can try something like this:

                function meshFunction(tx, ty, Z)
                ltx = length(tx);
                lty = length(ty);
                tz = zeros(ltx, lty);
                for xx = 1:ltx
                for yy = 1:lty
                tz(xx,yy) = feval(Z, tx(xx), ty(yy));
                endfor
                endfor
                mesh(tx, ty, tz);
                endfunction

                with

                tx = ty = linspace (-8, 8, 41)’;

                and defining a function "hat":

                function z=hat(x,y)
                r = sqrt(x.^2 + y.^2) + eps;
                z = sin(r) ./ r;
                endfunction

                then

                meshFunction(tx,ty,"hat");

                should give you a simple 3d plot. the tx and ty are the values over the x and y ranges, respectively. The 3rd parameter is the name (as a string) of the function of x and y that returns z.

                A positive attitude may not solve every problem, but it will annoy enough people to be worth the effort.

                1 Reply Last reply
                0
                • C C P User 3

                  I'm trying to get a 3D graph prepared. I just wasted two days on this app, Graphing Calculator 3D[^] but the author decided on some sort of copy protection or cripple ware or whatever you want to call it. i.e., It makes an excellent graph of Z = f(x,y) but then you can't use that image; e.g., no JPEG, no PNG, in fact, you can't even do a screen print. My motto is: Just say no to any and all such apps. So I came across an app from Microsoft, Mathematics 4.0[^] Before I go wasting another two days on a freeware app that isn't free, can anyone tell me if Microsoft Mathematics will... -1- Generate a good looking graph, Z = f(x,y) -2- Save that image in a file for use by other apps

                  R Offline
                  R Offline
                  runiter
                  wrote on last edited by
                  #17

                  Hi, I'm the author of Graphing Calculator 3D. Although exporting image to JPEG is disabled in free edition the screen capture should work (ie. using PrtScn button in keyboard). I'm not using any copy protection or cripple ware. I used screen capture myself many times without any issues. Have you tried PrtScn keyboard button in Windows? I understand that not everyone can afford the paid software so I tried to leave as much of the main features available in the free edition as possible.

                  R K C 3 Replies Last reply
                  0
                  • C C P User 3

                    I'm trying to get a 3D graph prepared. I just wasted two days on this app, Graphing Calculator 3D[^] but the author decided on some sort of copy protection or cripple ware or whatever you want to call it. i.e., It makes an excellent graph of Z = f(x,y) but then you can't use that image; e.g., no JPEG, no PNG, in fact, you can't even do a screen print. My motto is: Just say no to any and all such apps. So I came across an app from Microsoft, Mathematics 4.0[^] Before I go wasting another two days on a freeware app that isn't free, can anyone tell me if Microsoft Mathematics will... -1- Generate a good looking graph, Z = f(x,y) -2- Save that image in a file for use by other apps

                    B Offline
                    B Offline
                    Bassam Abdul Baki
                    wrote on last edited by
                    #18

                    Some free stuff: http://maxima.sourceforge.net/screenshots.html[^] http://www.gnu.org/software/octave/[^] http://www.scilab.org/[^] http://www.sicyon.com/[^] http://math.exeter.edu/rparris/winplot.html[^]

                    Web - BM - RSS - Math - LinkedIn

                    Q 1 Reply Last reply
                    0
                    • R runiter

                      Hi, I'm the author of Graphing Calculator 3D. Although exporting image to JPEG is disabled in free edition the screen capture should work (ie. using PrtScn button in keyboard). I'm not using any copy protection or cripple ware. I used screen capture myself many times without any issues. Have you tried PrtScn keyboard button in Windows? I understand that not everyone can afford the paid software so I tried to leave as much of the main features available in the free edition as possible.

                      R Offline
                      R Offline
                      Rage
                      wrote on last edited by
                      #19

                      runiter wrote:

                      I used screen capture myself many times without any issues

                      You definitely should grab the professional edition ;P

                      ~RaGE();

                      I think words like 'destiny' are a way of trying to find order where none exists. - Christian Graus Entropy isn't what it used to.

                      1 Reply Last reply
                      0
                      • Mike HankeyM Mike Hankey

                        Why no screen print? Try Greenshot[^] awesome, free screen grabber. If the graph can be seen on the screen I don't understand why you can't get a screen print?

                        New version: WinHeist Version 2.1.0 Beta Have you ever just looked at someone and knew the wheel was turning but the hamster was dead? Trying to understand the behavior of some people is like trying to smell the color 9. I'm not crazy, my reality is just different than yours!

                        R Offline
                        R Offline
                        Rage
                        wrote on last edited by
                        #20

                        The windows snipping tool is plain sufficient for that !

                        ~RaGE();

                        I think words like 'destiny' are a way of trying to find order where none exists. - Christian Graus Entropy isn't what it used to.

                        1 Reply Last reply
                        0
                        • B Bassam Abdul Baki

                          Some free stuff: http://maxima.sourceforge.net/screenshots.html[^] http://www.gnu.org/software/octave/[^] http://www.scilab.org/[^] http://www.sicyon.com/[^] http://math.exeter.edu/rparris/winplot.html[^]

                          Web - BM - RSS - Math - LinkedIn

                          Q Offline
                          Q Offline
                          Qmich
                          wrote on last edited by
                          #21

                          Scilab is fantastic. I also recommend the "matplotlib" package in python.

                          1 Reply Last reply
                          0
                          • C C P User 3

                            I'm trying to get a 3D graph prepared. I just wasted two days on this app, Graphing Calculator 3D[^] but the author decided on some sort of copy protection or cripple ware or whatever you want to call it. i.e., It makes an excellent graph of Z = f(x,y) but then you can't use that image; e.g., no JPEG, no PNG, in fact, you can't even do a screen print. My motto is: Just say no to any and all such apps. So I came across an app from Microsoft, Mathematics 4.0[^] Before I go wasting another two days on a freeware app that isn't free, can anyone tell me if Microsoft Mathematics will... -1- Generate a good looking graph, Z = f(x,y) -2- Save that image in a file for use by other apps

                            K Offline
                            K Offline
                            kdmote
                            wrote on last edited by
                            #22

                            I can't figure out what you're struggling with. Graphing Calculator looks like a pretty cool tool. I just gave it a try for the first time (used the online version) and it seems very intuitive. I only played around with it for about 10 minutes, but I made some pretty cool looking 3D graphs -- z=.5sin(y^2+6) + 2cos(x^4) -- (I call that one "The Frozen Ice Tunnel of Mordec"). My screenshot tool (Snagit) had no problem taking a pic of it. I'd say @runiter has made a pretty slick tool that I'll definitely be bookmarking. Thanks for the link!

                            C 1 Reply Last reply
                            0
                            • R runiter

                              Hi, I'm the author of Graphing Calculator 3D. Although exporting image to JPEG is disabled in free edition the screen capture should work (ie. using PrtScn button in keyboard). I'm not using any copy protection or cripple ware. I used screen capture myself many times without any issues. Have you tried PrtScn keyboard button in Windows? I understand that not everyone can afford the paid software so I tried to leave as much of the main features available in the free edition as possible.

                              K Offline
                              K Offline
                              kdmote
                              wrote on last edited by
                              #23

                              Hey runiter, welcome to CP Lounge! I for one am quite impressed with your app. And kudos for coming online to discuss it. Hope you stick around -- this place needs more people like you.

                              R 1 Reply Last reply
                              0
                              • K kdmote

                                Hey runiter, welcome to CP Lounge! I for one am quite impressed with your app. And kudos for coming online to discuss it. Hope you stick around -- this place needs more people like you.

                                R Offline
                                R Offline
                                runiter
                                wrote on last edited by
                                #24

                                Thanks kdmote, glad to have found this forum :) I will certainly stick around and happy to answer any questions about the software, both ins and outs.

                                1 Reply Last reply
                                0
                                • C C P User 3

                                  I'm trying to get a 3D graph prepared. I just wasted two days on this app, Graphing Calculator 3D[^] but the author decided on some sort of copy protection or cripple ware or whatever you want to call it. i.e., It makes an excellent graph of Z = f(x,y) but then you can't use that image; e.g., no JPEG, no PNG, in fact, you can't even do a screen print. My motto is: Just say no to any and all such apps. So I came across an app from Microsoft, Mathematics 4.0[^] Before I go wasting another two days on a freeware app that isn't free, can anyone tell me if Microsoft Mathematics will... -1- Generate a good looking graph, Z = f(x,y) -2- Save that image in a file for use by other apps

                                  D Offline
                                  D Offline
                                  divyamistry
                                  wrote on last edited by
                                  #25

                                  I wholehearted support Octave, but seeing your needs I suggest the following. If you need a free option, you can screencap, but preferably say you can spare $6/month (or between $45-$65/year) for WolframAlpha. Either way, you can get WAlpha output. Here's a sample. I asked WAlpha: (x^2)+(min(x,y))-abs(y)+(xy+y^2)[^] Hope that helps.

                                  1 Reply Last reply
                                  0
                                  • C C P User 3

                                    Mike Hankey wrote:

                                    If the graph can be seen on the screen I don't understand why you can't get a screen print?

                                    Nor do I, but that's what happens. If you want to see an example, just waste your time like I did :-D :laugh: :(( :omg: It's some sort of anti-user thing, the freeware isn't really free, and that biz.

                                    K Offline
                                    K Offline
                                    KP Lee
                                    wrote on last edited by
                                    #26

                                    Have you tried window's snipping tool instead of a screen print? What's nice about that is that you don't have to use a tool like paint to cut down the amount of screen you want. Your "freeware" may not thought of that tool or may not be able to protect against it's working.

                                    C 1 Reply Last reply
                                    0
                                    • K KP Lee

                                      Have you tried window's snipping tool instead of a screen print? What's nice about that is that you don't have to use a tool like paint to cut down the amount of screen you want. Your "freeware" may not thought of that tool or may not be able to protect against it's working.

                                      C Offline
                                      C Offline
                                      C P User 3
                                      wrote on last edited by
                                      #27

                                      KP Lee wrote:

                                      window's snipping tool instead of a screen print

                                      YES !!! PAY DIRT !!! You sir, are a real friend. Thank you. If you know of a similar app that will capture moving images with equal simplicity and detail, post it. This is the way it's supposed to be: click, click, drag, drag, zip, zap, I have my image Nice, I never knew this existed before your suggestion.

                                      K 1 Reply Last reply
                                      0
                                      • K kdmote

                                        I can't figure out what you're struggling with. Graphing Calculator looks like a pretty cool tool. I just gave it a try for the first time (used the online version) and it seems very intuitive. I only played around with it for about 10 minutes, but I made some pretty cool looking 3D graphs -- z=.5sin(y^2+6) + 2cos(x^4) -- (I call that one "The Frozen Ice Tunnel of Mordec"). My screenshot tool (Snagit) had no problem taking a pic of it. I'd say @runiter has made a pretty slick tool that I'll definitely be bookmarking. Thanks for the link!

                                        C Offline
                                        C Offline
                                        C P User 3
                                        wrote on last edited by
                                        #28

                                        kdmote wrote:

                                        a pretty slick tool that I'll definitely be bookmarking

                                        You do realize (yes?) that you can download a a limited freebie version for your machine.

                                        1 Reply Last reply
                                        0
                                        • R runiter

                                          Hi, I'm the author of Graphing Calculator 3D. Although exporting image to JPEG is disabled in free edition the screen capture should work (ie. using PrtScn button in keyboard). I'm not using any copy protection or cripple ware. I used screen capture myself many times without any issues. Have you tried PrtScn keyboard button in Windows? I understand that not everyone can afford the paid software so I tried to leave as much of the main features available in the free edition as possible.

                                          C Offline
                                          C Offline
                                          C P User 3
                                          wrote on last edited by
                                          #29

                                          For some reason, PrintScreen plus your package hates me, but I did find a screen shot that works. Thanks. Oh, and I fully concur with others, your stuff is absolutely fantastic.

                                          R 1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • World
                                          • Users
                                          • Groups