How would my code be written in psuedocode?

115 ビュー (過去 30 日間)
Raiven Balderas
Raiven Balderas 2018 年 2 月 10 日
コメント済み: Walter Roberson 2018 年 2 月 10 日
How would my code attached be written in pseudocode? im working on a bisection method. MY code is attached in file

採用された回答

Walter Roberson
Walter Roberson 2018 年 2 月 10 日
There is no standard for what is required or permitted in pseudocode, so all MATLAB code is also pseudocode.
  2 件のコメント
Raiven Balderas
Raiven Balderas 2018 年 2 月 10 日
No because my professor said no matlab syntax should be used in pseudocode .... I’m just having a difficult time . Can you put an example of what you think the psuedocode to my code is ?
Walter Roberson
Walter Roberson 2018 年 2 月 10 日
Change everything of the form
A = B;
to
assign B to A
Change every < to "less than", every <= to "less than or equal to", and so on.
Change every & to "and"
Change everything of the form
while CONDITION
to
loop as long as CONDITION is true
Change every "end" matching "if" to "done if", every "end" matching "while" to "done loop"
Change every entry of the form
function [out1, out2, ...] = NAME(in1, in2, ...)
to
create a procedure named NAME with input variables in1, in2, ... returning output variables out1, out2, ...
Not one of these changes are "standard" in any way, and are no more "pseudocode" than your existing code is: they are just syntax changes to get around the requirement that no MATLAB syntax can be used.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by