MCPcopy Create free account
hub / github.com/daniel-e/rustml / add

Method add

src/octave.rs:22–30  ·  view source on GitHub ↗

Adds the string to the Octave script. At the end of the line a semicolon is appended.

(&self, s: &str)

Source from the content-addressed store, hash-verified

20 ///
21 /// At the end of the line a semicolon is appended.
22 pub fn add(&self, s: &str) -> OctaveScriptBuilder {
23
24 let mut buf = self.buf.clone();
25 buf.push(s.to_string());
26 OctaveScriptBuilder {
27 buf: buf,
28 octave_bin: self.octave_bin.clone()
29 }
30 }
31
32 fn join<T: fmt::Display>(&self, v: &[T]) -> String {
33

Callers 13

plot_learning_curveFunction · 0.45
add_columnsMethod · 0.45
add_vectorMethod · 0.45
add_matrixMethod · 0.45
add_valuesMethod · 0.45
mainFunction · 0.45
mainFunction · 0.45
mainFunction · 0.45
plot_normal_dataFunction · 0.45
plot_mixtureFunction · 0.45
plot_nnFunction · 0.45

Calls 1

to_stringMethod · 0.80

Tested by

no test coverage detected