| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 4 months |
| seen | 10 hours ago | |
| stats | profile views | 55 |
|
May 1 |
comment |
How to increase the number of minor ticks in a plot? all settled in chat :) |
|
May 1 |
comment |
How to increase the number of minor ticks in a plot? @THM: I updated again, I hope you see better what's going on. I explicitly stated r1, r2, tickfreq (which you should adjust to get the desired results). If it still doesn't work, we maybe should meet on chat to fix things. |
|
May 1 |
revised |
How to increase the number of minor ticks in a plot? added 12 characters in body |
|
Apr 30 |
comment |
How to increase the number of minor ticks in a plot? I am sorry for all the edits, the numerical values caused me some problems. I am using Chop now in a version that let's you specify r1 (red ticks, labeled) and r2 (green ticks), rest is blue ticks. I hope you are able to finally do your chart - good luck, I have to run! |
|
Apr 30 |
revised |
How to increase the number of minor ticks in a plot? added 12 characters in body |
|
Apr 30 |
revised |
How to increase the number of minor ticks in a plot? added 719 characters in body |
|
Apr 30 |
revised |
How to increase the number of minor ticks in a plot? added 91 characters in body |
|
Apr 30 |
revised |
How to increase the number of minor ticks in a plot? added 23 characters in body |
|
Apr 30 |
revised |
How to increase the number of minor ticks in a plot? added 470 characters in body |
|
Apr 30 |
answered | How to increase the number of minor ticks in a plot? |
|
Apr 30 |
comment |
Replace elements in a list just curious: why is {a,c,x}->10? Maybe you could implement something smarter to replace (but I cannot see a pattern). Also, you should try to avoid single, capitalized letters as variable names (to avoid conflicts) |
|
Apr 29 |
comment |
How to force evaluation/numerical result of a function? I strongly suggest to read up in the documentation or here: mathematica.stackexchange.com/questions/18393/… (all answers are very much worth reading) or directly here: mathematica.stackexchange.com/questions/17391/coding-mistake/… |
|
Apr 29 |
comment |
How to force evaluation/numerical result of a function? You used square brackets [] instead of ()right after Sqrt[Pi] (or maybe you wanted another syntax, probably forgot a function?). Also, do not use single capital letters for your functions, variables - to avoid conflicts with internal functions, variables (better to always start your vars non-capitalized). |
|
Apr 29 |
comment |
Nest for large value of n you probably want to try starting value 0.5 instead of 1/2 (assuming you are interested in numeric result anyway). This speeds things up remarkably |
|
Apr 27 |
comment |
Legend for ListContourPlot ok, @swish's answer kind of opens my eyes what you want (why is another question :) ), sorry for being so complicated |
|
Apr 25 |
comment |
How to extract the coefficient from an expression not sure how your expressions look like, not sure what you dislike about your tab, here's another approach, maybe it helps? Voilà: Grid[Transpose@{#, Coefficient[expr, #]} &@Union[Cases[expr, Times[c___ : 1, a : _Subscript, b :___Subscript] :> a b, 2]],Frame -> All] |
|
Apr 23 |
comment |
Making axis numbers larger on Mathematica plot How about adding: TicksStyle -> FontSize -> 18 or similar? (and I don't use Word) |
|
Apr 21 |
answered | Implementation of a condition in a Function |
|
Apr 21 |
comment |
Implementation of a condition in a Function maybe pvcosts = If[# == 11, 0, (-5/1.05^#)] & /@ stoptime ? |
|
Apr 18 |
comment |
Combinations which do not have elements in common how long are the individual arrays? |