| bio | website | |
|---|---|---|
| location | ||
| age | 27 | |
| visits | member for | 1 year |
| seen | 3 hours ago | |
| stats | profile views | 329 |
|
Dec 19 |
comment |
Mathematica 9 behavior with derivative of a sum @swish No matter what you expect it to mean, you will have to agree that if D[Sum[Sin[x],x],x] has a nonzero value, then D[Sum[f[x],x],x] cannot be zero in general, since we might have f==Sin. |
|
Dec 19 |
revised |
How to efficiently get the value from form UI built with dynamic InputField added 790 characters in body |
|
Dec 19 |
comment |
Function with different set of arguments @user4972 Because of the way Sequence works, p cannot be used directly as a list, you have to use for instance {p}[[i]]. |
|
Dec 19 |
revised |
How to efficiently get the value from form UI built with dynamic InputField added 55 characters in body |
|
Dec 19 |
answered | How to efficiently get the value from form UI built with dynamic InputField |
|
Dec 19 |
comment |
Function with different set of arguments @user4972 Yes, the first two examples where to highlight how you would go about if you knew exactly what numbers it should work for. |
|
Dec 19 |
revised |
Mathematica returns fuzzy plot edited body |
|
Dec 19 |
comment |
Function with different set of arguments @user4972 In the above you know for certain that definition 1 has one passed, and definition 2 has three passed. In the last definition, the matched p be equal to Sequence[{x,y,z},{x1,y1,z1},...,{xN,yN,zN}], so you can find the length using Length[{p}]. Note that {} is needed due to the way Sequence works. |
|
Dec 19 |
revised |
Function with different set of arguments added 117 characters in body |
|
Dec 19 |
revised |
Function with different set of arguments added 6 characters in body |
|
Dec 19 |
answered | Function with different set of arguments |
|
Dec 18 |
comment |
Edges and crossing Look at reference.wolfram.com/mathematica/ref/Line.html . The syntax is Graphics[{Line[{{0,0},{1,1}}]] to draw a lince between points {0,0} and {1,1}. You can use styling to make the latest line appear visually on top. But initially you'll get better help if you try to just make a simple example code demonstrating what you would like to do. |
|
Dec 17 |
answered | Changing the number of locators with SetterBar |
|
Dec 17 |
comment |
Changing the number of locators with SetterBar In case you don't know, there is a LocatorAutoCreate option for LocatorPane that adds/removes points when alt-clicking. |
|
Dec 14 |
revised |
Is there a Mathematica equivalent to MATLAB's logspace? added 3 characters in body |
|
Dec 14 |
revised |
Is there a Mathematica equivalent to MATLAB's logspace? Added slight code improvement. |
|
Dec 14 |
answered | Is there a Mathematica equivalent to MATLAB's logspace? |
|
Dec 13 |
comment |
Quirk in VertexColors interpolation when displaying Polygon It would be nice to see some code pieces, you can always just reference your other answer with respect to interfacing triangle. |
|
Dec 13 |
comment |
Movable text on a curve @AlexeyPopkov Interesting, you might be able to use that to find good character baseline midpoints and from that the positions after normal kernings. Then at the very least you could get the same positions along the path (using the equidistant function I just added). You might also get better control over positioning and controlling using the Filled form rather then Text. |
|
Dec 13 |
revised |
Movable text on a curve Extended the answer with updated code and a new equidistant based method |