User Portlet
Discussions |
---|
Problem Solved! Thank you! The solution that have posted works wonderfully! Cheers! |
It sounds like you are looking to create multiple graphics and combine them together. Making customized graphics programatically requires knowing a bit of graphics programming. ... |
Solved! Well sort of... It works for me. If anyone can think of a better solution, I'd be glad to hear it. In the mean time I'll post mine below. [mcode]Clear["Global`*"] Species = {A, B, c}; sol = ParametricNDSolve[{ A'[t] == -ka*A[t], B'[t]... |
@Duncan, You can specify the context (like a scope) of variables unique to a notebook. See the screenshot. In this case, you do not have to clear the variables by yourself. Because everytime you open the notebook, there would be a new "x". That is... |
Great, Thanks for the suggestions! |
Great! I will try this approach. Thanks! |