-
Rust❤️Sin 그릴 단서코딩Coding/한글Rust강의★내가★공부하려고만듬 2022. 6. 23. 16:44728x90
한글러스트Rust강의_027_Rust vs R 기초part1_sin cos 그래프 그리기 #sin #cos #rustlang #maths
https://youtu.be/GMD-6NU7zUA
use plotters::prelude::*; fn main() { let root_area = BitMapBackend::new("images/2.5.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("Line Plot Demo", ("sans-serif", 40)) .build_cartesian_2d(-10..10, 0..100) .unwrap(); ctx.configure_mesh().draw().unwrap(); ctx.draw_series( LineSeries::new((-10..=10).map(|x| (x, x* x)), &GREEN) ).unwrap(); }
https://plotters-rs.github.io/book/basic/basic_data_plotting.html
목표 코드
https://m.blog.naver.com/PostView.naver?blogId=phy2sci&logNo=222720163039&isFromSearchAddView=true반응형'코딩Coding > 한글Rust강의★내가★공부하려고만듬' 카테고리의 다른 글
Rust-windowing❤️macOS깔끔한 창 괜찮음 (0) 2022.06.26 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 & cosin 그래프 그리기 (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