Scott Lowe

Results 14 issues of Scott Lowe

It would be easier for Matlab users unfamiliar with GitHub to upload any schemes they create without leaving the Matlab environment. To this end, it might be worthwhile setting up...

I expect a reasonable number of people will want to create a new color scheme based on an existing one implemented for a different editor. At the moment people can...

enhancement
ready

We should check if the user is exporting from a version of MATLAB which supports the language being exported due to the following scenario: - User is in older version...

bug

The latex build action ``` - name: Build PDF docs uses: ammaraskar/sphinx-action@master with: docs-folder: "docs/" pre-build-command: "apt-get update -y && apt-get install -y latexmk texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended" build-command: "make latexpdf"...

In the latest release of torchvision, v0.2.2 [[release notes]](https://github.com/pytorch/vision/releases/tag/v0.2.2), the fields of the CIFAR10 object containing the data were changed from - both `train_data` and `test_data` to `data` - both...

Changes the format strings from f-strings (introduced in Python 3.6) to `str.format()` (which has been around since Python 2.6). f-strings are great, but not universally supported yet - I made...

Settings such as `'FaceColor'` and `'EdgeColor'` are clearly settings for the bars and can safely be interpreted as such. Doing so will make code written for `bar` easier to change...

Settings which begin `'Bar'` or `'Errorbar'` can be automatically accepted and passed to `bar` and `supererr`. This can be implemented using the `Unmatched` field returned by [inputParser](https://uk.mathworks.com/help/matlab/ref/inputparser-class.html).

Can encode these with errorbar style strings `','` and `'L'`.

enhancement

It would make sense if you can plot a marker in the appropriate place along at the same time as the error bar. This can be simply done by using...

enhancement