Flow chart symbols: Difference between revisions

From Master of Neuroscience Wiki
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 7: Line 7:


=== Beginning of a program or function ===
=== Beginning of a program or function ===
{{#mermaid:sequenceDiagram
{{#mermaid:
flowchart LR
flowchart LR
id1([Start])
id1([Start])
Line 13: Line 13:


=== Ending of a program or function ===
=== Ending of a program or function ===
{{#mermaid:sequenceDiagram
{{#mermaid:
     flowchart LR
     flowchart LR
       id1([Stop])
       id1([Stop])
Line 21: Line 21:
For arithmetic operations and data-manipulations.
For arithmetic operations and data-manipulations.


{{#mermaid:sequenceDiagram
{{#mermaid:
     flowchart LR
     flowchart LR
       id1(Process)
       id1(Process)
Line 27: Line 27:


== Decision ==
== Decision ==
{{#mermaid:sequenceDiagram
{{#mermaid:
     flowchart LR
     flowchart LR
       id1{Decision}
       id1{Decision}
Line 33: Line 33:


== Input/Output ==
== Input/Output ==
{{#mermaid:sequenceDiagram
{{#mermaid:
     flowchart LR
     flowchart LR
       id1[/Input/]
       id1[/Input/]
Line 39: Line 39:


== Function ==
== Function ==
{{#mermaid:sequenceDiagram
{{#mermaid:
     flowchart LR
     flowchart LR
       id1[[Function]]
       id1[[Function]]
Line 45: Line 45:


== Initialization ==
== Initialization ==
{{#mermaid:sequenceDiagram
{{#mermaid:
     flowchart LR
     flowchart LR
      id1{{Initialization}}
    id1{{Initialization}}
}}
}}


== File ==
== File ==
{{#mermaid:sequenceDiagram
{{#mermaid:
     flowchart LR
     flowchart LR
       id1[(File)]
       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.

Decision

Input/Output

Function

Initialization

File