Skip to content

Commit

Permalink
re-fix logic of plotInitialConditions in fittingModel.plotResults
Browse files Browse the repository at this point in the history
  • Loading branch information
bcdaniels committed Jun 13, 2022
1 parent f81af43 commit 3da7f8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SirIsaac/fittingProblem.py
Original file line number Diff line number Diff line change
Expand Up @@ -1343,7 +1343,7 @@ def plotResults(self,fittingData,indepParamsList,numCols=None,
if plotInitialConditions and (name+'_init' in self.indepParamNames):
if ICmarker is None: ICmarker = colorWheelFmt[1]
idx = self.indepParamNames.index(name+'_init')
Plotting.plot([0],[indepParamsList[idx][i]],
Plotting.plot([0],[indepParamsList[j][idx]],
marker=ICmarker,
clip_on=False,ms=markerSize,zorder=5,
mfc="None",mec=colorWheelFmt[0],mew=markerSize/3.)
Expand Down

0 comments on commit 3da7f8e

Please sign in to comment.