-
Rust❤️) sin & cosin 그래프 그리기코딩Coding/한글Rust강의★내가★공부하려고만듬 2022. 6. 23. 16:19728x90
한글러스트Rust강의_027_Rust vs R 기초part1_sin cos 그래프 그리기 #sin #cos #rustlang #maths #graph
https://youtu.be/GMD-6NU7zUA
sin & cosinuse plotters::prelude::*; fn main() { let root_area = BitMapBackend::new("images/2.12.png", (600, 400)) .into_drawing_area(); root_area.fill(&WHITE).unwrap(); let mut ctx = ChartBuilder::on(&root_area) .set_label_area_size(LabelAreaPosition::Left, 40) .set_label_area_size(LabelAreaPosition::Bottom, 40) .caption("Legend", ("sans-serif", 40)) .build_cartesian_2d(-4.0..4.0, -1.2..1.2) .unwrap(); ctx.configure_mesh().draw().unwrap(); let x_kps: Vec<_> = (-80..80).map(|x| x as f64 / 20.0).collect(); ctx.draw_series(LineSeries::new(x_kps.iter().map(|x| (*x, x.sin())), &RED)) .unwrap() .label("Sine") .legend(|(x, y)| PathElement::new(vec![(x, y), (x + 20, y)], &RED)); ctx.draw_series(LineSeries::new(x_kps.iter().map(|x| (*x, x.cos())), &BLUE)) .unwrap() .label("Cosine") .legend(|(x, y)| PathElement::new(vec![(x, y), (x + 20, y)], &BLUE)); ctx.configure_series_labels() .border_style(&BLACK) .background_style(&WHITE.mix(0.8)) .draw() .unwrap(); }
legend 보면 됨
https://plotters-rs.github.io/book/basic/basic_data_plotting.html
다른 글 보기
Rust &R_lang❤️
sin, cos등등..그래프 그려보기-R과 코드 비교해서 - 동영상❤️ -
https://economiceco.tistory.com/m/14199반응형'코딩Coding > 한글Rust강의★내가★공부하려고만듬' 카테고리의 다른 글
Rust❤️How to use Rayon for parallel calculation of PI (0) 2022.06.26 c# ❤️ pi계산 1억자리까지 vs❤️ rust와 비교 (0) 2022.06.24 C# vs C++ vs Rust 피보나치 계산으로 성능 테스트 (0) 2022.06.24 Rust❤️Sin 그릴 단서 (0) 2022.06.23 동영상만들예정❤️Rust SQL❤️) Databases (With Diesel) | Code to the Moon (0) 2022.06.23 Rust &R_lang❤️sin, cos등등..그래프 그려보기-R과 코드 비교해서 - 동영상❤️ (0) 2022.06.22 Rust WASM- Pathfinder❤️길 빠른길 찾기 만들기 (0) 2022.06.21 Rust❤️Webassembly ❤️yew crates 로 todo앱 만들기 (0) 2022.06.21