User Portlet
Featured Contributor
Discussions |
---|
Sure! But it would really help to know what you want to do with these plot expressions in your function. Each plot function could have different options or different argument patterns, so if you're inspecting the expression inside your function, you... |
As has been pointed out, the expected way to treat expressions as if all variables are real is to use `ComplexExpand`. And while I cannot read the mind of Wolfram developers, it seems to me that `Re` is not intended to deal with arbitrary expressions... |
Once you have the structure, you can create whatever labels you want. In my example, the symbol `result` was assigned a value that was a list of all of the desired vectors. So, `result[[1]]` could be the label for the first vector, etc. That means... |
Do you mean just the second elements instead of the last elements? GroupBy[{{a, 1, x}, {b, 2, v}, {a, 3, y}, {a, 7, z}, {b, 2, w}}, First -> (#[[2]] &), Total] (* 11, b -> 4|> *) |
Do you want it in a format that other applications can use? Or do you only need to import back into Mathematica? Or do you just want to avoid re-generating the Dataset again (avoid being dependent on those original files)? |
For a particular instance, you can use `HoldForm`: HoldForm[D[f[x, y], x]] For a "global" solution, you could probably use `Format` to define how you want `Derivative` to display in output cells (you could restrict it to `TraditionalForm`... |
I'm sorry, but I've lost the plot. I don't understand where you're going with this. I don't understand why my answers are confusing, and so I don't know how to improve them. Have you been able to get something to actually work? Have you tried the... |
Daniel Lichtblau already mentioned that! Thanks! Here's what you can do Sasha: altQuotientRemainder[m_Integer, n_Integer?Negative] := -QuotientRemainder[-m, n]; altQuotientRemainder[m_Integer, n_Integer] := QuotientRemainder[m, n] ... |
My suggestion would be to avoid trying to mess with these front end "objects", especially if you're not willing to dive into stylesheet, boxes, options, etc. You can create your own version of the "object" with `DateString` and a `Panel` (as one... |
Okay, but I can't run your code. I don't know what kind of help you're expecting, but I at least won't be able to give you an answer without being able to actually inspect your graph and other data. |