Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- coding: utf-8 -*- | |
| # | |
| # IPython Bug Report documentation build configuration file, created by | |
| # sphinx-quickstart on Mon Mar 21 17:17:53 2016. | |
| # | |
| # This file is execfile()d with the current directory set to its | |
| # containing dir. | |
| # | |
| # Note that not all possible configuration values are present in this | |
| # autogenerated file. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| \documentclass[aps,pra,twocolumn,superscriptaddress,nofootinbib]{revtex4-1} | |
| %============================================================================= | |
| % BEGIN UNFORGIVABLE HACKS | |
| %============================================================================= | |
| \makeatletter | |
| \def\@bibdataout@aps{% | |
| \immediate\write\@bibdataout{% | |
| @CONTROL{% | |
| apsrev41Control,author="08",editor="1",pages="0",title="0",year="1"% |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (*Suppose that data is stored in a CSV-like format, with newline-delimted rows of comma-separated fields.*) | |
| StringSplit[#, ","]& /@ StringSplit["a,b,c\nd,e,f", "\n"] | |
| (*If certain fields are missing, then let's suppose this is represented by an empty string as the contents for that field.*) | |
| StringSplit[#, ","]& /@ StringSplit["a,,c\nd,e,f", "\n"] | |
| (*This is inconvienent, so let's write a function to parse that as the special values Missing[].*) | |
| MarkMissingValues[dataStr_] := Map[ | |
| Function[row, StringSplit[row, ","]], | |
| StringSplit[dataStr, "\n"] |