storing-information

Storing results of loop iterations in R

混江龙づ霸主 提交于 2019-11-29 14:53:11
I am trying to store the results of the the code below, however I could only come up with a solution to save the results of the model with the smallest sum of squared residuals. This was useful until the results were in the limits of the range of both c and gamma, therefore I need to assess the characteristics of other points. For this I need to store the results of every iteration. Does anyone know how to do this in this case? Thanks in advance! dlpib1 <- info$dlpib1 scale <- sqrt(var(dlpib1)) RSS.m <- 10 for (c in seq(-0.03,0.05,0.001)){ for (gamma in seq(1,100,0.2)) { trans <- (1+exp(-

C# Encrypt Text Output

前提是你 提交于 2019-11-27 13:36:05
问题 I have created a few little programs that export data to a text file using StreamWriter and then I read them back in using StreamReader. This works great and does what I need it to do but I was wondering if there was a way that I could save this information without the user being able to access or modify it either intentionally or unintentionally. An example of something I would have in a text file would be if a checkbox was ticked, when you tick it it outputs "Ticked" to a text file, when