|
@@ -1657,6 +1657,12 @@ namespace TEAMModelBI.Controllers.BITest
|
|
|
|
|
|
List<double> set = new double[366].ToList();
|
|
|
|
|
|
+ List<List<double>> doubs = new() {
|
|
|
+ new List<double>() { 6, 5, 4, 3, 2, 1},
|
|
|
+ new List<double>() { 2, 3, 4, 5, 6, 7 }
|
|
|
+ };
|
|
|
+
|
|
|
+ var artTerm = DenseMatrix.OfColumns(doubs);
|
|
|
|
|
|
|
|
|
List<List<double>> doubles = new() {
|
|
@@ -1746,7 +1752,7 @@ namespace TEAMModelBI.Controllers.BITest
|
|
|
// if (school.edition.record < edition)
|
|
|
// school.edition.record = edition;
|
|
|
//}
|
|
|
-
|
|
|
+ school.e
|
|
|
//await cosmosClient.GetContainer(Constant.TEAMModelOS, "School").ReplaceItemAsync<School>(school, id, new PartitionKey("Base"));
|
|
|
BIRelation biRel = await cosmosClient.GetContainer(Constant.TEAMModelOS, "School").ReadItemAsync<BIRelation>(id, new PartitionKey("BIRel"));
|
|
|
//biRel.edition = school.edition;
|