User Portlet User Portlet

Wilson Kan
Discussions
Hi Piotr, Try these: http://www.wolframalpha.com/input/?i=plot(piecewise(%7B(2%5Ex%2B3,+x%3C%3D1),+(3x%2B2,+x+%3E1)%7D)) http://www.wolframalpha.com/input/?i=plot(piecewise(%7B(2(x%5E3-x%5E2)%2Fabs(x-1),+x!%3D1),+(2,+x+%3D1)%7D)) ...
Hi Mitchell, The short answer is that you are using a slightly different convention for spherical coordinate than what is in Wolfram Language. CoordinateTransform[{"Spherical" -> "Cartesian", 3}, {\[Rho], \[Theta], \[Phi]}] shows that...
Try to add the PerformanceGoal option in your Plot3D Manipulate[ Plot3D[x^2 - y^2, {x, -3, 3}, {y, -3, 3}, RegionFunction -> Function[{x, y, z}, 2 "Quality"], {t, 0, 1}]
It sounds like you are actually solving an integer partition problem. For your example adding to 10: IntegerPartitions[10, \[Infinity], {2, 3, 4}]
Hi Adnan, Would the following do the trick? sol /. {a_, {b_}} -> {a, b} or Partition[Flatten[sol], 2] Wilson
Hi Mark, You can use one of the options in ToString to solve the format issue with fractions: "(" ToString[#[[1]], InputForm] ", " ToString[#[[2]], InputForm] ")" & /@ pts I would like to know if there's a nicer way as well to...
Hi Jorge, If you take a look at the following: FullForm[gt2] You will see that gt2 is indeed a Graph except it is enclosed by List. This will return True GraphQ[gt2[[1]]] Hope that helps. Wilson
Hi smallseries, In Mathematica: list = {-20, -10, 10, 20}; BarChart[list, ChartLabels -> Placed[list, Center], AxesLabel -> {x, y}] it generated: ![enter image description here][1] Is that what you are looking for? Wilson ...
This is really strange. I am unable to scroll as well in 10.4. But with the Number Theory cells minimized, I can scroll again. If I expand General cell, things are scrollable. But expanding the Foundations cell, it gets stuck :S
Hi Mawe, Can you share the code as to how you are plotting these? I tried the following: ContourPlot[0.66^2 == (x - 1)^2 + (y - 1)^2, {x, 0, 2}, {y, 0, 2}] ContourPlot[0.66 == Sqrt[(x - 1)^2 + (y - 1)^2], {x, 0, 2}, {y, 0, 2}] ...