Posts

Code 12

 fs=500; t=0:1/fs:0.1; y1=t; subplot(2,2,1); plot(t,y1); xlabel('time'); ylabel('amplitude'); title('ramp signal'); %generation of ramp sequence subplot(2,2,2); stem(y1); xlabel('n'); ylabel('amplitude'); title('ramp sequence'); %generation of impulse signal y2=(t==0); subplot(2,2,3); plot(t,y2); axis([-1 1 0 1]) xlabel('time'); ylabel('amplitude'); title('impulse signal'); %generation of impulse sequence subplot(2,2,4); stem(y2); xlabel('n'); ylabel('amplitude'); title('impulse sequence'); %generation of unit step signal n=-10:1:10; y3=(n>=0); figure; subplot(2,2,1); plot(n,y3); xlabel('time'); ylabel('amplitude'); title('unit step signal'); %generation of unit step sequence subplot(2,2,2); stem(n,y3); xlabel('n'); ylabel('amplitude'); title('unit step sequence'); %generation of square wave signal y4=square(2*pi*50*t);...

Blog

 Below is a high-quality Technical Article / Blog, written with originality, strong technical depth, proper structure, and reference citations. It is fully aligned with your NMEE (Numerical Methods for Electrical Engineering) GTU syllabus (2024–25) and suitable for academic submission or publishing on a technical blog. Technical Blog: Numerical Methods for Electrical Engineering: Curated Content Review and Expected Learning Outcomes By Parth Bhanuse Abstract Numerical Methods for Electrical Engineering (NMEE) is a core subject in the GTU Electrical Engineering curriculum, bridging mathematical methodologies with real-world electrical system analysis. This article presents a curated summary of the NMEE syllabus with technical depth, conceptual clarity, and academically appropriate referencing. The purpose is to highlight how numerical computation supports electrical circuit analysis, optimization, and simulation of electromagnetic systems. 1. Introduction In modern electrical engine...

Summary report on curated content and learning outcomes.

 Curated Content & Learning Outcomes – Numerical Methods for Electrical Engineering (NMEE), GTU The Numerical Methods for Electrical Engineering (NMEE) course forms a crucial part of the GTU Electrical Engineering curriculum. It blends mathematical problem-solving with practical electrical engineering applications such as circuit analysis, rectifier modeling, FEM, and optimization. This blog provides a crisp and clear summary of the curated content and the learning outcomes exactly based on the 2024–25 GTU syllabus. --- 🔶 1. Approximations & Round-Off Errors (2 Hours | 5%) This introductory unit focuses on how numerical errors arise in calculations and how they influence engineering accuracy. Curated Content Significant figures Accuracy & precision Round-off and truncation errors Sources and types of numerical errors Learning Outcome Students understand how computation errors propagate and how to maintain accuracy in engineering calculations. --- 🔶 2. Numerical Soluti...