Iteration - Assamese
- subtitles off
- captions off
- English
- Assamese
- Questions posted on Forums
- Scilab Tutorials - Assamese
-
Autocorrelation
How do Resonating Freq using Autocorrelation work
01-02M 0-10S maalasali@zhcet.ac.in
Answer last updated on: Oct. 7, 2020, 8:46 a.m.
-
How to open scilab editor?
I have following queries.1. How to open a Scilab editor?2. Where is this Scilab editor file shown in the video?I am using Scilab 6.1.0 on Ubuntu.
00-01M 20-30S hbammkanti
Answer last updated on: Sept. 16, 2020, 2:47 p.m.
-
help <= command throws syntax error
As per the tutorial, I typed 'help <=' and got the following error:Error: syntax error, unexpected end of file.I am using Scilab 6.1.0 on Ubuntu 18.04.
03-04M 30-40S hbammkanti
Answer last updated on: Sept. 16, 2020, 11:14 a.m.
-
Iteration
How to find summation of vector x = [1 2 6 4 2], using iterative procedure. Hint: Check length(), add each number using ‘for’ loop.
05-06M 10-20S deepali0225@gmail.com
Answer last updated on: May 13, 2020, 11:05 a.m.
-
While loop
i=0:12;while (j<=35)j=1+2*i;disp(j)if (j==25)thenbreakendendcorrect output is displayed but going in infinite loop.
05-06M 20-30S smitak
Answer last updated on: May 8, 2020, 11:28 a.m.
-
use of while ststement
To display all odd numbers from 1 to 25i=1;while(i<=25)i=i+2;disp(i)if (i==25) then breakend end this displays all number 3 to 25 , except '1'where i am doing wrong can you help?
05-06M 20-30S smitak
Answer last updated on: May 8, 2020, 10:53 a.m.
-
Scilab Editor
How to open scilab editor?
01-02M 0-10S grajarajanvit
Answer last updated on: May 4, 2019, 5:06 p.m.
-
iteration
in a for loop can we perform nested loop?
05-06M 10-20S Rachana28
Answer last updated on: May 4, 2019, 3:54 p.m.
-
Continue statement
when to use continue statement in iteration?
02-03M 20-30S rupalilokhande
Answer last updated on: May 4, 2019, 3:18 p.m.
-
continue statement
I write a code :-->for i=1:5:54 -->if ((i/4)==0) then continue-->else disp(i)-->end endoutput should be:1611212631414651but output comes out to be : 1. 6. 11. 16. 21. 26. 31. 36. 41. 46. 51. can you explain me, where I am wrong ?
5-6M 0-10S aman_hemu
Answer last updated on: May 4, 2019, 12:50 p.m.
-
meaning of comma and semicolon
What is the significance of comma and semicolon in scilab?
06-07M 50-60S poornimanaik
Answer last updated on: May 4, 2019, 12:19 p.m.
-
breaking out of nested loops
How to break out of loops nested to three levels in scilab?
06-07M 50-60S poornimanaik
Answer last updated on: May 4, 2019, 12:16 p.m.
-
1Installing
-
2Getting Started
-
3Vector Operations
-
4Matrix Operations
-
5Conditional Branching
-
Iteration
-
7Scripts and Functions
-
8Plotting 2D graphs
-
9Xcos Introduction
-
10File handling
-
11User Defined Input and Output
-
12Integration
-
13Solving Non linear Equations
-
14Linear equations Gaussian Methods
-
15Linear equations Iterative Methods
-
16Interpolation
-
17ODE Euler methods
-
18ODE Applications
-
19Optimization Using Karmarkar Function
-
20Digital Signal Processing
-
21Control systems
-
22Discrete systems
-
23Calling User Defined Functions in XCOS
-
24Simulating a PID controller using XCOS
Questions posted on ST Forums:
660 visits
Outline:
ইটিৰেচন( Iteration) 'for' ষ্টেটমেন্ত(statement)ৰ গাঠনিৰ বাখ্যা-কোৱা যে ভেৰিয়েবল(variable)টো জ্ঞাত হয় তালিকা/ভেক্তৰ( vector)/মেত্ৰিক্স(matrix) এটাৰ ওপৰত(বা এটা সমীকৰণ যি ইয়াৰ যিকোনো এটাক সমাধান কৰে) উদাৰণ দিয়ক: for i = 1:5, disp (i), end তাৰপাছত ব্ৰেক কন্ডিচন(break condition) বাখ্যা কৰা । উদাৰণ ব্যৱ্হাৰ কৰক: for i = 1:10, disp(i), if (i==5), break, end, end তাৰপাছত কন্টিনিউ কন্ডিচন(continue condition) বাখ্যা কৰা । উদাৰণ ব্যৱ্হাৰ কৰক: for i = 1:10, if (i<=5) then continue, else disp(i), end, end হোৱাইল কন্ডিচন (while condition) বাখ্যা কৰা । উদাৰণ দিয়ক: i = 0; while(i <=5), i = i + 1; d
Width: | 800 | Height: | 480 |
---|---|---|---|
Duration: | 00:06:03 | Size: | 3 MB |
Show video info