Flow chart symbols: Difference between revisions

From Master of Neuroscience Wiki
No edit summary
No edit summary
Line 7: Line 7:


=== Beginning of a program or function ===
=== Beginning of a program or function ===
{% raw %}<pre class="mermaid">
{{#mermaid:sequenceDiagram
     flowchart LR
     flowchart LR
       id1([Start])
       id1([Start])
  </pre>{% endraw %}
}}


=== Ending of a program or function ===
=== Ending of a program or function ===
{% raw %}<pre class="mermaid">
{{#mermaid:sequenceDiagram
     flowchart LR
     flowchart LR
       id1([Stop])
       id1([Stop])
  </pre>{% endraw %}
}}


== Process ==
== Process ==
For arithmetic operations and data-manipulations.
For arithmetic operations and data-manipulations.


{% raw %}<pre class="mermaid">
{{#mermaid:sequenceDiagram
     flowchart LR
     flowchart LR
       id1(Process)
       id1(Process)
  </pre>{% endraw %}
}}


== Decision ==
== Decision ==
{% raw %}<pre class="mermaid">
{{#mermaid:sequenceDiagram
     flowchart LR
     flowchart LR
       id1{Decision}
       id1{Decision}
  </pre>{% endraw %}
}}


== Input/Output ==
== Input/Output ==
{% raw %}<pre class="mermaid">
{{#mermaid:sequenceDiagram
     flowchart LR
     flowchart LR
       id1[/Input/]
       id1[/Input/]
  </pre>{% endraw %}
}}


== Function ==
== Function ==
{% raw %}<pre class="mermaid">
{{#mermaid:sequenceDiagram
     flowchart LR
     flowchart LR
       id1[[Function]]
       id1[[Function]]
  </pre>{% endraw %}
}}


== Initialization ==
== Initialization ==
{% raw %}<pre class="mermaid">
{{#mermaid:sequenceDiagram
     flowchart LR
     flowchart LR
       id1{{Initialization}}
       id1{{Initialization}}
  </pre>{% endraw %}
}}


== File ==
== File ==
{% raw %}<pre class="mermaid">
{{#mermaid:sequenceDiagram
     flowchart LR
     flowchart LR
       id1[(File)]
       id1[(File)]
  </pre>{% endraw %}
}}

Revision as of 07:55, 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