Flow chart symbols: Difference between revisions
From Master of Neuroscience Wiki
Created page with " <mermaid> graph TD A[Start] --> B[End] </mermaid>" |
|||
| (9 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
Flowcharts can be used to plan a program. I will try to emulate the norm ISO 5807. | |||
Questions to [mailto:davrot@uni-bremen.de David Rotermund] | |||
== Terminal == | |||
=== Beginning of a program or function === | |||
{{#mermaid: | |||
flowchart LR | |||
id1([Start]) | |||
}} | |||
=== Ending of a program or function === | |||
{{#mermaid: | |||
flowchart LR | |||
id1([Stop]) | |||
}} | |||
== Process == | |||
For arithmetic operations and data-manipulations. | |||
{{#mermaid: | |||
flowchart LR | |||
id1(Process) | |||
}} | |||
== Decision == | |||
{{#mermaid: | |||
flowchart LR | |||
id1{Decision} | |||
}} | |||
== Input/Output == | |||
{{#mermaid: | |||
flowchart LR | |||
id1[/Input/] | |||
}} | |||
== Function == | |||
{{#mermaid: | |||
flowchart LR | |||
id1[[Function]] | |||
}} | |||
== Initialization == | |||
{{#mermaid: | |||
flowchart LR | |||
id1{{Initialization}} | |||
}} | |||
== File == | |||
{{#mermaid: | |||
flowchart LR | |||
id1[(File)] | |||
}} | |||
Latest revision as of 08:31, 21 October 2025
Flowcharts can be used to plan a program. I will try to emulate the norm ISO 5807.
Questions to David Rotermund
Terminal
Beginning of a program or function
Ending of a program or function
Process
For arithmetic operations and data-manipulations.