The Tutorials in this series are created using Scilab 5.2.0 and 5.2.2 on Ubuntu 14.04 and Mac OS. Mathematical and scientific calculation software, open source substitute for MATLAB, very useful for all science and engineering students, in academics particularly. Read more
Foss : Scilab - Tamil
Outline: Xcosக்கு அறிமுகம் Xcos என்றால் என்ன. Palette என்றால் என்ன. Paletteல் இருந்துblockகளை சேகரித்து, block diagramஐ construct செய்ய, அவைகள இணைப்பது. வெவ்வேறு blockகளின் para..
Outline: Fileஐ கையாள்வது- Scilabல் Fileஐ கையாள்வது write() functionஐ பயன்படுத்தி, ஒரு fileலில் எழுதுவது read() functionஐ பயன்படுத்தி, ஒரு fileலில் இருந்து read செய்வது mopen() functi..
Outline: Scilabல், user defined input மற்றும் output Input Function. Mprintf( ) save ( ) மற்றும் load ( ) ஒரு கணக்கீட்டின் பாதி வழியில், Scilabஐ விட்டு வெளியேறி, பின்னர் ஒரு நிலை..
Outline: வெவ்வேறு '''Composite Numerical Integration algorithm'''களுக்கு, '''Scilab''' codeஐ உருவாக்குவது integralஐ, சமமான intervalகளாக பிரிப்பது ஒவ்வொரு intervalக்கும், algorithmஐ app..
Outline: Numerical methodகள்- Nonlinear equationகளை தீர்ப்பது Numerical methodகளை பயன்படுத்தி, nonlinear equationகளை தீர்க்க கற்பது Bisection methodஐ கற்பது Scant methodஐ கற..
Outline: Gauss Elimination method algorithmஐ விளக்குவது Gauss Elimination methodக்கான codeஐ விளக்கி, இந்த codeஐ பயன்படுத்தி ஒரு உதாரணத்தை தீர்ப்பது Gauss-Jordan method algorithmஐ விளக்..
Outline: 1. '''Iterative method'''களை பயன்படுத்தி, '''linear equation'''களின் systemஐ தீர்ப்பது 2. Jacobi மற்றும் Gauss Seidel iterative methodகளை பயன்படுத்துவது 3. தீர்வு converge ஆகு..
Outline: Numerical Interpolation வெவ்வேறு Numerical Interpolation algorithmகளுக்கு, Scilab codeஐ உருவாக்குவது கொடுக்கப்பட்ட data pointகளில் இருந்து, functionனின் புது மதிப்பை..
Outline: Euler methodகளை பயன்படுத்தி ODEக்களை தீர்ப்பது 1. Euler மற்றும் Modified Euler methodகளை பயன்படுத்தி ODEக்களை தீர்ப்பது 2. ODEக்களை தீர்க்க, Scilab codeஐ உருவாக்குவது
Outline: Scilab ode functionஐ பயன்படுத்தி, ODEக்களை தீர்ப்பது Scilab ode functionஐ பயன்படுத்துவது ODEக்களின் வழக்கமான உதாரணங்களை தீர்ப்பது தீர்வை plot செய்வது
Outline: *Optimization பற்றி * Optimizationல், Scilab function karmarkarஐ பயன்படுத்துவது
Outline: Continuous மற்றும் discrete sine waveகளை plot செய்வது. Step functionஐ plot செய்வது. Ramp functionஐ plot செய்வது.
Outline: 1. ஒரு continuous time systemஐ வரையறுப்பது: இரண்டாவது மற்றும் அதிகமான order 2. Step inputக்கான பதிலை plot செய்வது 3. Sine inputக்கான பதிலை plot செய்வது 4. Bode plot 5. Numer..
Outline: Discrete time system variable zஐ வரையறுப்பது First order discrete time systemஐ வரையறுப்பது Ones, flts, dscr, ss2tf functionகளை விளக்குவது
Outline: ஒரு squaring functionஐ எழுதுவது Xcoxல், scifunc blockஐ பயன்படுத்துவது MUX blockஐ பயன்படுத்துவது பல input மற்றும்outputகளை கொண்ட, functionகளை call செய்வது
Foss : Scilab - Telugu
Outline: Installing Show where to download from and how to decide which version to choose (OS and 32/64bit) (www.scilab.org/download) Windows installation (Internet Connection i..
Outline: Getting Started Expressions: Show mathematical expressions with numbers (42+4^2-64/4). Variables: Assign scalars to variables- a=1, b=2, c=3. Diary:CD, diary open ..
Outline: Conditional Branching Explain booleans: %T and %F- they form the basis for the if statement.
Outline: Iteration Explain syntax of 'for' statement- tell that the variable iterates over a list/vector/matrix (or an expression that evaluates to any of these). Give example: ..
Outline: Plotting 2D graphs About linspace: linspace is a linearly spaced vector. Plot a simple graph: x=linspace(12,34,10), y=linspace(-.1,2,10), plot(x,y) plot2d(x,y,styl..