Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit c341dab4 authored by ulrich_y's avatar ulrich_y
Browse files

17: Check input in kplot

parent 3a9df2c9
No related branches found
No related tags found
No related merge requests found
...@@ -57,6 +57,15 @@ def kplot(sigma, k, sigmar=[], kr=[], ...@@ -57,6 +57,15 @@ def kplot(sigma, k, sigmar=[], kr=[],
labelk="$K$", labelkr=None, labelk="$K$", labelkr=None,
labelsigma=None, labelsigmar=None): labelsigma=None, labelsigmar=None):
if type(sigma) == np.ndarray:
sigma = [sigma]
if type(sigmar) == np.ndarray:
sigmar = [sigmar]
if type(k) == np.ndarray:
k = [k]
if type(kr) == np.ndarray:
kr = [kr]
if labelsigma is None: if labelsigma is None:
labelsigma = r"$\D\sigma\,/\,\D " + labelx + "$" labelsigma = r"$\D\sigma\,/\,\D " + labelx + "$"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment