Rename project from Speed Graph to FilterView

- Updated README and build_and_run.md to reflect the new project name: FilterView
- Renamed window title in App.java from "Speed Graph" to "Filter View"
- Completed project renaming for consistency across documentation and code
This commit is contained in:
Eric Ratliff
2024-09-14 14:59:21 -05:00
parent 521b0469b1
commit d42126051c
3 changed files with 4 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
# Speed Graph with Adjustable Raised Cosine Filter
# Filter-View with Adjustable Raised Cosine Filter
This JavaFX application demonstrates the concept of a raised cosine filter applied to signal data, visualized in a dynamic graph. The user can control two key parameters:

View File

@@ -1,6 +1,6 @@
# Build and Run Instructions for Speed Graph Application
# Build and Run Instructions for Filter-View Application
This guide explains how to build and run the Speed Graph with Adjustable Raised Cosine Filter application on different platforms: **Arch Linux**, **Ubuntu**, and **Windows**.
This guide explains how to build and run the Filter-View with Adjustable Raised Cosine Filter application on different platforms: **Arch Linux**, **Ubuntu**, and **Windows**.
## Prerequisites

View File

@@ -289,7 +289,7 @@ public class App extends Application {
// Setup and display the scene
Scene scene = new Scene(layout, 900, 600);
primaryStage.setScene(scene);
primaryStage.setTitle("Speed Graph with FFT");
primaryStage.setTitle("FilterView");
primaryStage.show();
}