User Portlet User Portlet

Discussions
Thanks for sharing this. Very compact way to write the equations!
Would like to use the results of WeatherData to make tables of temperature and relative humidity on an hourly basis. Below is my first attempt. It is intended to return the temperature for the first 10 hours of 2021 July 1st; however, it returns...
The suggestion you provided was interesting, but is more complicated than I would like. In part, because I would like the notebook to be used and edited by staff with only limited experience with Mathematica. Expect to be exporting lists of up to...
Regarding the exercises, should all answers be submitted at once, or can submitting answers be spaced out over several days and several sessions?
Thanks, that works and helps gets me pointed in the right direction; however, there are still a few concepts that I am not clear on. Below is a description of where my confusion lies. The Mathematica documentation, e.g. [Advanced...
Thanks! that helps. Wonder what are the minimum set of permissions to allow others to only run the Manipulate. Below are the results of my tests. First, I checked the Permissions when using "->All" with the test: Options[cd01,...
The Sort command below provided an unexpected result. Could someone describe how to modify this code to Sort based on the Strings in the 3rd column of the array? Sort[{{a, 2, "az"}, {c, 1, "aa"}, {d, 3, "ba"}}, #1[[3]]
That is interesting. Thanks for pointing it out. In the range of operation, e.g. 0
Yep, that fixes it. Using the line below solves the problem. FindRoot[ 130 == calcTresAtTime[x, 0.4, 300.], {x, 0.01, 80}] This is perfectly reasonable for this application. And produces the result {x -> 63.9137} Thanks!
Thanks Neil, That does address the first question very nicely! As for the follow-up question, in the example below, the output has two set of double quotes like this: text with""quoted text"" . The goal would be to have only one set of...