English 中文(简体)
象SICP[闭门]那样绘制信号流量图表
原标题:Drawing a signal-flow diagram as in SICP [closed]

我们不准许向软件图书馆、辅导、工具、书籍或其他场外资源征求建议的问题。 你可以ed问这个问题,以便用事实和引证来回答。

Closed 9 years ago.

http://mitdiat.mit-text. 我尝试了一些方法,但失败。 我等待你们的帮助。

I ve Trial graphviz and written the following Code. 我想得到菲博克斯序列的图表。

digraph G {
    add [shape = box];
    cons_1 [shape = box, label = "cons"];
    cons_2 [shape = box, label = "cons"];
    fibs [shape = point];
    Efibs [shape = point];
    single_0 [shape = none, label = "0"];
    single_1 [shape = none, label = "1"];
    subgraph cluster_0 {
        add -> cons_1 -> Efibs -> cons_2 -> fibs;
    }
    single_0 -> cons_1 [style = dotted];
    single_1 -> cons_2 [style = dotted];
    Efibs -> add;
    fibs -> add;
}

但是,结果却很糟。 是否有任何简单的工具(我更喜欢WYTIWYG)或辅导来提取这种图表?

感谢很多。

最佳回答
问题回答

暂无回答




相关问题
Web Application Architecture Diagrams

I am working on a Social networking site. I have to create High level design document. In this document there is one section "Application Architecture diagram". I haven t worked on architecture ...

Diagrams for Data Flow? [closed]

I m a database programmer, but I have never used data flow/diagram program. I would like to explain some Data Diagram to a client. Question - what is a program that will allow me to easily create a ...

UML Diagram to Model API

I need to create a diagram to document a RESTFul API that build, which UML diagram should I use? Thanks in advance,

热门标签