Three-dimensional array - Printable Version +- QB64 Phoenix Edition (https://qb64phoenix.com/forum) +-- Forum: QB64 Rising (https://qb64phoenix.com/forum/forumdisplay.php?fid=1) +--- Forum: Code and Stuff (https://qb64phoenix.com/forum/forumdisplay.php?fid=3) +---- Forum: Programs (https://qb64phoenix.com/forum/forumdisplay.php?fid=7) +---- Thread: Three-dimensional array (/showthread.php?tid=1363) |
Three-dimensional array - Kernelpanic - 01-03-2023 Structure and representation of a three-dimensional array. What could one do with it? For example: day, month, total sales . . . Nice! Oh yes, wrong inputs are not caught yet. Ebene = level, Zeile = row, Spalte = column Code: (Select All) 'Dreidimensionales Feld mit graphischer Darstellung - 3. Jan. 2023 Straight and oblique version. RE: Three-dimensional array - bplus - 01-03-2023 Other than 3D models, you could do Row, column, page of a book? Letter$(row, col, page) = a letter. RE: Three-dimensional array - SpriggsySpriggs - 01-03-2023 For a simple "database". Table, row, column RE: Three-dimensional array - mnrvovrfc - 01-03-2023 Three dimensions:
RE: Three-dimensional array - SMcNeill - 01-03-2023 First, Middle, Last names in a 3D name database. RE: Three-dimensional array - Kernelpanic - 01-03-2023 I see it and it reminds me of Charles Babbage. Misunderstood at the time, today its star shines bright and clear in the sky of internet technology. The day will come when the Third Dimensional Array will be named in the same breath as a Babbage or a Zuse. RE: Three-dimensional array - TempodiBasic - 01-03-2023 Quote:Structure and representation of a three-dimensional array. What could one do with it? For example: day, month, total sales... Good! How many items can be in the group of ternary set? is it more mathematical question or more philosophical question? hh: mm: ss (time) X:Y:Z (3D space) dd:mm:yyyy (date) ternar oxide/ salt/ acid (chemical compound) 0 :1: 2 (ternary number system) thesis antithesis synthesis (Hegel) quiet motion acceleration (Physics) good bad man (Ethics) compiled interpreted bytecode (Informatic science) child adult old (time evolution of man) input output state (information science) earnings losses balance (economic computation) incoming, outcoming, total (economy:balance) debit, credit, total (double entry bookkeeping) and so on... RE: Three-dimensional array - TempodiBasic - 01-03-2023 (01-03-2023, 07:56 PM)SMcNeill Wrote: First, Middle, Last names in a 3D name database. Name, Date of birth, Sex in a friend database in which Name is compound by First, Middle, Last names RE: Three-dimensional array - Kernelpanic - 01-04-2023 Well, I can't think of a practical application right now. Maybe something for mathematicians who can store three-dimensional functions in it. It would be impractical for a "normal" database. I would take two or three records that access each other. For example: Code: (Select All) Type employee The 3D array is a nice exercise, and I haven't found anywhere that shows a graphical representation of a 3D array. RE: Three-dimensional array - SMcNeill - 01-04-2023 (01-04-2023, 10:12 PM)Kernelpanic Wrote: Well, I can't think of a practical application right now. Maybe something for mathematicians who can store three-dimensional functions in it. It would be impractical for a "normal" database. I would take two or three records that access each other. For example: |