User Portlet User Portlet

Kyle Martin
Discussions
Are you able to provide a minimal example with code one could actually evaluate? I think there are some fundamental issues in your syntax. For example to define a function `XX` with 3 arguments you would want to instead do ``` XX[aa_, bb_,...
I can't evaluate your code on my machine (don't have the necessary data), but are you looking for [AxesOrigin][1]? ``` Labeled[Show[ Plot[in, {r, 0, a}, Ticks -> {{{a, "a"}, {3 a, "3a"}, {5 a, "5a"}, {7 a, "7a"}, {9 a, "9a"},...
I think what you want is [`Subdivide`][1], which I believe is similar to `linspace`, however instead of `n` evenly spaced points, `Subdivide` generates the list of valued from subdividing the range into `n` equal parts. So `linspace(-5,5,7)` from...
The CDF Export menu item has been replaced by the CDF Preview menu item. After clicking on CDF Preview, there is an "Export" button in the top right of this new window that you can use to actually export the document. Which documentation page are...
This is really impressive!
Can you post an example of a notebook which demonstrates this? Also, which version of Mathematica are you using, and on what operating system?
If you have the unique numbers in their own list, i.e. something like list = {{1, 2, 3}, {4, 5, 6}, {7, 8, 9}}; uniqueVals = {{10}, {15}, {20}}; You can use MapThread with Join or a similar functionto combine them: ...
Unfortunately it will be hard to help you without actual code we can use to reproduce the issue. Can you provide this? The notebook you provided is missing some required data.
I think this is a case where the functionality intentionally changed, and the documentation wasn't entirely updated to properly reflect the changes. I've reported this, and if it turns out my guess was incorrect I'll let you know.
As a start, does "/Applications/Xcode 2.app/Contents/Developer" exist on your Mac? (starting with what the error message hints at) What do CCompilers[] $CCompilerDefaultDirectory return on your machine? What if you set $CCompiler to...