Commands in Scilab and plotting
Short cut keys
Programmimg
Basic and programming and plotting
Matrice
100


What is the command to clear the screen?

clc

100

Identify the Shortcut key to store programs?

Cntl+S

100

What is the command to generate complex number?

complex

100

What symbol do you use to suppress output of a line in Scilab?

Semicolon ( ; )

100

What function creates an identity matrix in Scilab?


eye()

200

What is the Scilab constant for the value of π?

%pi

200

What is the short cut key to clear the screen?

F2

200

What the command to create conjugate of a complex Number?

Conj()

200

Which command clears all variables from the workspace?


clear

200

What operator is used for matrix (element-wise) division term by term?


./ (dot slash)

300

What is a built-in variable used to display the resultant value in your calculations?

ans

300

What is the shortcut key to find the command existing in Scilab?(Eg: Factrorial)

Tab key

300

What is the command to find the real term in any complex number?

real()

300

Which command clears the console screen in Scilab?


clc

300

Which function returns the number of rows and columns of a matrix?


size()

400

Which function is used to plot a simple 2D graph in Scilab?


plot()

400

Auto-completion for command and variable names.

Tab

400

What keyword starts a user-defined function in Scilab?


function

400

What file extension is used for Scilab script files?


.sce (or .sci for function files)

400

Which command is used to find the determinant of a matrix A?


det(A)

500

Which function adds a title to a plot?


title()

500

Move cursor one character left or right.

Left (←) / Right (→) Arrow

500

Which loop keyword repeats a block a fixed number of times?


for

500

Which function is used to create a new empty figure window?


figure()

500

What does the single quote operator (') represent for a matrix A in Scilab?

 

Transpose of A.