You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
problem = RAT.Project.load("source/tutorial/data/two_contrast_example.json")
115
-
p, results = RAT.run(problem, controls)
116
-
print(results)
117
-
118
-
In the following sections, we will discuss the methods of the **Project** class, and see how they allow us to build up a model by populating the various sections.
119
-
120
17
***********************************
121
18
The Components of the Project Class
122
19
***********************************
@@ -1314,14 +1211,15 @@ Now we'll calculate this to check the agreement with the data. We need an instan
1314
1211
1315
1212
.. output:: Matlab
1316
1213
1317
-
controls.display = 'iter';
1214
+
controls = controlsClass();
1318
1215
disp(controls)
1319
1216
1320
1217
.. tab-item:: Python
1321
1218
:sync: Python
1322
1219
1323
1220
.. output:: Python
1324
-
1221
+
1222
+
controls = RAT.Controls()
1325
1223
print(controls)
1326
1224
1327
1225
We then send all of this to RAT, and plot the output:
0 commit comments