1946 Stanford Indians football team
The 1946 Stanford Indians football team represented Stanford University in the 1946 college football season. This was the team's first season since 1942 because the team suspended play due to World War II. Stanford's head coach was Marchmont Schwartz, who had coached the 1942 team as well. The team was a member of the Pacific Coast Conference and played its home games at Stanford Stadium in Stanford, California.[1]
1946 Stanford Indians football | |
---|---|
Conference | Pacific Coast Conference |
1946 record | 6–3–1 (3–3–1 PCC) |
Head coach | Marchmont Schwartz (2nd season) |
Home stadium | Stanford Stadium |
1946 Pacific Coast Conference football standings | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Conf | Overall | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Team | W | L | T | W | L | T | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
No. 4 UCLA $ | 7 | – | 0 | – | 0 | 10 | – | 1 | – | 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Oregon State | 6 | – | 1 | – | 1 | 7 | – | 1 | – | 1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
USC | 5 | – | 2 | – | 0 | 6 | – | 4 | – | 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Washington | 5 | – | 3 | – | 0 | 5 | – | 4 | – | 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Stanford | 3 | – | 3 | – | 1 | 6 | – | 3 | – | 1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Oregon | 3 | – | 4 | – | 1 | 4 | – | 4 | – | 1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Montana | 1 | – | 3 | – | 0 | 4 | – | 4 | – | 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Washington State | 1 | – | 5 | – | 1 | 1 | – | 6 | – | 1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
California | 1 | – | 6 | – | 0 | 2 | – | 7 | – | 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Idaho | 0 | – | 5 | – | 0 | 1 | – | 8 | – | 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Schedule
Date | Opponent | Rank | Site | Result |
---|---|---|---|---|
September 28 | Idaho | W 45–0 | ||
October 5 | San Francisco* |
| W 33–7 | |
October 12 | at No. 5 UCLA | No. 17 |
| L 6–26 |
October 19 | Santa Clara* |
| W 33–26 | |
October 26 | USC |
| L 20–28 | |
November 2 | Oregon State | T 0–0 | ||
November 9 | Washington |
| L 15–21 | |
November 16 | at Washington State |
| W 27–26 | |
November 23 | at California |
| W 25–6 | |
December 23 | Hawaii* |
| W 18–7 | |
|
Players drafted by the NFL
Player | Position | Round | Pick | NFL Club |
Lloyd Merriman | Back | 5 | 32 | Chicago Bears |
Bill Hachten | Guard | 13 | 114 | New York Giants |
Charley Wakefield | Tackle | 28 | 261 | Philadelphia Eagles |
Lynn Brownson | Back | 29 | 268 | Washington Redskins |
gollark: ```python#!/usr/bin/env python3import argparseimport subprocessparser = argparse.ArgumentParser(description="Compile a WHY program")parser.add_argument("input", help="File containing WHY source code")parser.add_argument("-o", "--output", help="Filename of the output executable to make", default="./a.why")parser.add_argument("-O", "--optimize", help="Optimization level", type=int, default="0")args = parser.parse_args()def build_C(args): template = """#define QUITELONG long long intconst QUITELONG max = @max@;int main() { QUITELONG i = 0; while (i < max) { i++; } @code@} """ for k, v in args.items(): template = template.replace(f"@{k}@", str(v)) return templateinput = args.inputoutput = args.outputtemp = "ignore-this-please"with open(input, "r") as f: contents = f.read() looplen = max(1000, (2 ** -args.optimize) * 1000000000) code = build_C({ "code": contents, "max": looplen }) with open(temp, "w") as out: out.write(code)subprocess.run(["gcc", "-x", "c", "-o", output, temp])```
gollark: And *is* Haskell necessarily that fast?
gollark: <@!341618941317349376> is being stupid.
gollark: No.
gollark: It's Turing-complete and everything!
References
- "Stanford Game-by-Game Results; 1946–1950". College Football Data Warehouse. Retrieved September 12, 2014.
- "1947 NFL Draft". Retrieved September 15, 2014.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.