Skip to content

Commit 73e6c9f

Browse files
committed
fixed formatting
1 parent f619ffb commit 73e6c9f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

examples/plotting.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use control_systems_torbox as cst;
22

3-
use cst::{plot::*, systems::Tf, utils::traits::Continuous, FrequencyResponse};
3+
use cst::{FrequencyResponse, plot::*, systems::Tf, utils::traits::Continuous};
44

55
fn main() {
66
let sys: Tf<f64, Continuous> = Tf::new(&[1.0], &[0.0, 1.0]);

src/analysis/frequency_response.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use std::ffi::{CString, c_int};
22

3-
use nalgebra::{DMatrix, zero};
3+
use nalgebra::DMatrix;
44
use num_complex::{Complex64, c64};
55

66
use crate::{

0 commit comments

Comments
 (0)