2023-11-15 08:54:21 +0100 | received badge | ● Famous Question (source) |
2022-02-02 10:23:20 +0100 | received badge | ● Notable Question (source) |
2022-02-02 10:23:20 +0100 | received badge | ● Popular Question (source) |
2021-04-20 14:41:15 +0100 | received badge | ● Notable Question (source) |
2020-05-01 21:34:23 +0100 | received badge | ● Popular Question (source) |
2019-01-10 10:03:49 +0100 | asked a question | Number of elements in vector I want to implement the Gauss-Seidel method for solving linear systems for a university project, and I'm stuck on how to get the number of elements in the product vector In the code, 'm' is the input matrix, 'v' is the product of the matrix and our variable vector, and 'initial' is the starting guess for Gauss-Seidel's Method. The line pointed by that arrow is the one I'm interested in, and it's showing what I want to accomplish. I searched for it on Sage textbooks, but they are oddly silent on the matter of vectors. Any ideas? Also any other recommendations and advice on my code is more than welcome. |
2019-01-08 11:42:16 +0100 | commented answer | Generic Symbolic function as input in actual funciton Ok got it. Again many thanks! |
2019-01-08 11:06:01 +0100 | commented answer | Generic Symbolic function as input in actual funciton Thanks a lot! I have the exact same results. After I fixed the error thing I also get a logical result on this scope too: Just to clarify, because I can't get the "%time" function you mentioned, what is the syntax of it? I tried to even copy an example from Sage's documentation, however I can't seem to get it to work. I have the "time" library imported.
Meaning what I type exactly to get it to work? This is what I get for typing this: |
2019-01-08 10:53:57 +0100 | received badge | ● Scholar (source) |
2019-01-08 10:53:56 +0100 | received badge | ● Supporter (source) |
2019-01-07 19:32:38 +0100 | received badge | ● Student (source) |
2019-01-07 15:10:07 +0100 | commented question | Generic Symbolic function as input in actual funciton Could you explain more about how I can use this Arb on my case? If it's not a problem, unless you want to suggest anything else not relevant to the main question, continue on the answer section, so others can find this thread more easily. I'm a newbie on sagemath so, show mercy on the poor! 😛😛 |
2019-01-07 15:03:49 +0100 | received badge | ● Editor (source) |
2019-01-07 15:03:05 +0100 | commented question | Generic Symbolic function as input in actual funciton Yes time is imported and everything. |
2019-01-07 15:01:46 +0100 | commented question | Generic Symbolic function as input in actual funciton It's indented, for some reason the indent disappeared while copying the code. |
2019-01-07 14:49:54 +0100 | commented question | Generic Symbolic function as input in actual funciton Old habits don't change 😛😛 Yes I will remove them. |
2019-01-07 14:41:33 +0100 | asked a question | Generic Symbolic function as input in actual funciton So I have this assignment for university, and I'm trying to write a generic Newton's method which will take any symbolic function as input. I just don't know how to declare this on the function's inputs. Here's the function I want as input: and here's the function I want to create: Any ideas on this? Also do you have any other suggestions on this code? |