30,090 reputation
348122
bio website none
location Argentina
age
visits member for 1 year, 4 months
seen 23 mins ago
stats profile views 1,947

Code for my breathing avatar here


You may contact me at: BelisariusForSO@gmail.com

But please don't email me with requests about Q&A. Post them in the site instead.


20m
answered How can I shade specific regions between two curves in a Plot?
14h
revised Plot 3D set (or a domain of three-variable function)
added 5 characters in body
15h
revised Forecast Future Stock Prices - Brownian Motion
deleted 100 characters in body
16h
comment What is the complete list of valid Front End Tokens?
@JohnFultz Well, you're the most authoritative source :). Thanks
16h
comment How to draw a contour diagram in Mathematica?
@Mr.Wizard Thanks a lot :)
1d
answered How to draw a contour diagram in Mathematica?
1d
accepted Celebration: How to golf a marriage with a prefix free code
1d
awarded  Good Answer
1d
awarded  Nice Answer
1d
comment How to draw tiles with different height?
So you're just piling up transparent cuboids. What is your difficulty doing that?
1d
comment How to draw tiles with different height?
"In addition, I need to put several layers on each tile, and each layer has a same thickness of 0.5" ... not clear enough for me (What is a "layer"?)
2d
comment I want to draw a graph using a weighted Adjacency matrix
To get the "simplified" graph do just myAdjacencyMatrix /. 0 -> Infinity
2d
revised extracting the rows of a matrix satisfying a condition (e.g. all elements negative)
added 168 characters in body
2d
answered extracting the rows of a matrix satisfying a condition (e.g. all elements negative)
2d
comment I want to draw a graph using a weighted Adjacency matrix
@image_doctor Shallower if you plot "amount studied" vs. "% still not learnt", in any scale
May
19
revised I want to draw a graph using a weighted Adjacency matrix
edited tags
May
19
comment I want to draw a graph using a weighted Adjacency matrix
mmm ... re reading your questions so far, your "tight schedule" seems dangerously near a "homework delivery deadline"
May
19
comment I want to draw a graph using a weighted Adjacency matrix
If you are really working on a tight schedule, I seriously suggest trying with another language. Mathematica has a steep learning curve and isn't appropriate for rush learning
May
19
comment How can I write a Do loop that iterates over N iterators when N is not known a-priori?
Also, the tagging looks inappropriate. Anyone?
May
19
comment How can I write a Do loop that iterates over N iterators when N is not known a-priori?
Something like this? f[n_] := Module[{i = 1}, Do[Print@i++, Evaluate[Sequence @@ Thread[List[Array[a, n], 1, 3]]]]]; f[4]