internal List<float> GetDomains(int domainColumn) { ColumnProcessing sp = new ColumnProcessing(); // now we need to go through the entire column and pick out unique domains List<float> doms = sp.GetDistinctDomains(domainColumn, columnManager); return doms; }
internal List<float> GetDomains(string blockDomain) { // first find the column index contining the blockDomain int idx = columnManager.columnNames.IndexOf(blockDomain); ColumnProcessing sp = new ColumnProcessing(); // now we need to go through the entire column and pick out unique domains List<float> doms = sp.GetDistinctDomains(idx, columnManager); return doms; }