TOP 100+ MATLAB Interview Questions and Answers

Posted On:October 20, 2021, Posted By: Latest Interview Questions, Views: 1311, Rating :

 1. Explain What is Matlab?

MATLAB is a high ­performance language for technical computing. it integrates computation, visualization, and programming in an easy­-to­-use environment where problems and solutions are expressed in familiar mathematical notation. Typical uses include:

  • Math and computation
  • Algorithm development
  • Modeling, simulation, and prototyping
  • Data analysis, exploration, and visualization
  • scientific and engineering graphics
  • Application development, including graphical User interface building

2. What are the Matlab system parts?
the MATLAB system consists of five main parts:

  1. the MATLAB language.
  2. the MATLAB working environment.
  3. Handle graphics.
  4. the MATLAB mathematical function library.
  5. the MATLAB Application Program interface (API).

3. What is the Matlab language?
This is a high ­level matrix/array language with control flow statements, functions, data structures,input/output, and object ­oriented programming features. it allows both “programming in the small” to rapidly create quick and dirty throw­ away programs, and “programming in the large” to create complete large and complex application programs.

4. What is the Matlab Working Environment?
This is the set of tools and facilities that you work with as the MATLAB user or programmer. it includes facilities for managing the variables in your work space and importing and exporting data. it also includes tools for developing, managing, debugging, and profiling M­files, MATLAB’s applications.

5. Define handle graphics in Matlab?
This is the MATLAB graphics system. it includes high­ level commands for two ­dimensional and three ­dimensional data visualization, image processing, animation, and presentation graphics. it also includes low­ level commands that allow you to fully customize the appearance of graphics as well as to build complete graphical User interfaces on your MATLAB applications. 

6. What is the Matlab Mathematical Function Library?
This is a vast collection of computational algorithms ranging from elementary functions like sum, sine, cosine, and complex arithmetic, to more sophisticated functions like matrix inverse, matrix eigenvalues, Bessel functions, and fast Fourier transforms.

7. What is the Matlab application program interface(api)?
This is a library that allows you to write C and Fortran programs that interact with MATLAB. it include facilities for calling routines from MATLAB (dynamic linking), calling MATLAB as a computational engine, and for reading and writing MAT­files

8. How to add noise to an image in Matlab?
the function noise.m, now installed on ashland too, adds Gaussian, uniform, salt and pepper,additive or multiplicative noise to an image.

9. What Can We Use Matlab For?

  1. simple calculations
  2. Plotting and analyzing mathematical relationships (2D and 3D)
  3.  List & Matrix Operations
  4. Writing script files (a type of programming)
  5. symbolic manipulation of equations
  6. Advanced visualization, animation and GUI interface tools

10. Vectorization What is that in Matlab?how to do it?
Thinking is terms of full matrices/vectors and also some related functions for that * Use of filter(), which works beautifully for some time series models

11. On What Machines Matlab should Be Run?
We will run it from sthelens, and only if sthelens is down, from cher, orsay or tiree. it works on other machines too, but some of the other machines have older versions of the Os and core dump upon exiting from matlab. some other local machines with new setups work fine. Try your local machine. Matlab is blocked from running on the servers

12. What is latex in Matlab?
Matlab already handles naturally simple LaTeX encodings that allow introducing Greek lettters or modifying the font size and appearance in plots.

13. Can we run Matlab with out graphics?
sometimes you may want to run scripts which contain plotting commands without displaying the plots and without going into the script to comment out the commands.
an example: if you’re working from home and it’s too slow to run graphics over the network.You can play a simple UNIX trick:
%setenv DisPLAY /dev/null % matlab

14. How to correctly apply the graphics patches in Matlab?
Open a LOCAL MACHinE window and type: xhost +ashland # Add the following code sequence just before the plot command that was giving you problems: figure? set(gcf,’renderer’,’zbuffer’)? [s,w] = unix(‘echo $DisPLAY’)? set(gcf,’XDisplay’,w)?

15. How to call Matlab in batch mode?
This can be done from the command line or from a makefile. You need a script (filename.m). Just type at the command line, or include in the makefile: matlab

16. Define about stress analysis in Matlab?
People working on these areas as a aerospace engineers should have familiarity and exposure to NAsTRan and MATLAB with knowledge on space environment and modeling of flexible dynamics.these aerospace engineers will be responsible to conduct stress analysis on metallic and composite structures. NAsTRan, IDEAD, Oracle and PATRan proficiency level is required. their duties also include on aircraft which are metallic and composite structures. This includes and understanding of control surface stiffness and loop calculations, finite element modeling (FEM),fatigue testing requirement and analysis.

17. Do you know what are the four basic functions to solve ordinary differential equations?
the four basic functions that MatLab has to solve ODE’s are

  • Quad
  • Quad8
  • ODE23
  • ODE45

18. What are Xmath features?

  • scripting language with OOP features
  • Libraries that are LNX and C language compatible
  • A debugging tools with GUI features
  • Color graphics can be pointed and clickable

19. Do you know what is simulink?
simulink is an add­on product to MatLab, it provides an interactive, simulating, graphical environment for modeling and analyzing of dynamic systems.

20. What are the operators that Matlab allows?
Matlab allows following Operators

  • Arithmetic Operators
  • Relational Operators
  • Logical Operators
  • Bitwise Operations
  • set Operations

21. Do you know what are the types of loops does Matlab provides?
Matlab provides loops like

  1. While Loop
  2. For Loop
  3. Nested Loops

22. Do you know Matlab consist of what?
MatLab consists of five main parts

  1. MatLab Language
  2. MatLab working environment
  3. Handle graphics
  4. MatLab function library
  5. MatLab Application Program interface (API)

23. What is xmath?
Xmath is an interactive scripting and graphics environment for Xwindow workstations.

  • With its significant improvement features on MATLAB­type software, interactive mathematics,scripting
  • functionalities are elaborated.
  • Following are the Xmath features:
  • sripting languages with OOP features.
  • Libraries that are LNX and C language compatible.
  • A debugging tools with GUI features.
  • Color graphics can be pointed and clickable.
  • A special layer is available that is programmable for MOTIF GUI.

24. What is Image arithmetic functions in Matlab?
Following is the list of image arithmetic functions and their usage.

  • Imabsdiff ­ Returns absolute difference of two images.
  • Imadd ­ Performs addition of two images or addition of constant to image.
  • Imapplymatrix ­ Applies linear combination of color channels.
  • Imcomplement ­ Complements an image.
  • Imdivide ­ Divide one image into another or divide image by constant.
  • Imlincomb ­ Linear combination of images.
  • Immultiply ­ Multiplies two images or multiplies image by constant.
  • Imsubtract ­ subtracts one image from another or subtracts constant from image.

25. Tell We can Matlab run without graphics?
At times scripts need to run without displaying the plots.

  • By doing this, the script statement need not be commented.
  • When working from home, running graphics over the network may be too slow.
  • to perform the process, add the following lines of code:
  • %setenv DisPLAY /dev/null % MATLAB.
  • By using these simple tricks, we can run MATLAB without graphics.

26. Do you know how to correctly apply the graphics Patches in Matlab?
Following is the sequence of commands to apply graphic patches in MATLAB.
Open the LOCAL MACHinE window.
Type the command xhost + ashland.
Add the following code sequence before the plot command.
Figure;
set(gcf,’renderer’,’zbuffer’);
[s,w] = unix(‘echo $DisPLAY’);
set(gcf, ‘XDisplay’,w);

27. Do you know what is latex in Matlab?
MATLAB allows Greek letters.

  • these letters are to be encoded.
  • to encode these Greek letters, LaTeX is used.
    MATLAB already handles naturally simple LaTeX encodings that allow introducing Greek lettters or modifying the font size and appearance in plots.

28. suppose if you Know then tell me how to call Matlab in batch mode?
Batch mode execution of MATLAB can be done from command line or from makefile.

  • A script is needed with extension .m.
  • specify all the commands that are to execute in sequential order in the script.
  • the commands are placed in the script by using the command makefile
  • to add the commands in command line mode, type all the commands at the command line in sequential order.
  • the commands are executed soon after typing them at the command line.

29. What is Memory management functions in Matlab?
Below is the list of memory management functions.

  • Clear – Removes variables from memory.
  • Pack – saves the existing variables to disk, and then reloads them contiguously.
  • save – selectively persists variables to disk.
  • Load – Reloads a data file saved with the save function.
  • Quit – Exits MATLAB and returns all allocated memory to the system.

30. Do you know how to pre allocate a non double matrix?
Preallocating a block of memory for holding a non double matrix is memory efficient.

  • it is faster to use the function ‘repmat’.
  • While allocating block of memory for a matrix, zeros are pre allocated to a matrix.
  • the function to pre allocate memory is int8().
  • Ex: matrix = int8(zeros(100));
  • Repmat function is used to create a single double matrix.
  • Ex: matrix2 = repmat(int8(0), 100, 100);
  • Thus non double matrix is pre allocated.

31. What are the basic plots and graphs of Matlab?
Following table describes basic plots and graphs.

  • Box – Axis border
  • Errorbar – Plots error bars along curve
  • Hold – Retains current graph while adding new graphs
  • Line – Creates line object
  • Linespec (Line specification) – syntax of Line specification string
  • Loglog – Log to log scale plot
  • Plot – 2-D line plot
  • Plot3 – 3-D line plot
  • Plotyy – 2-D line plots with y-axis on both left and right side
  • Polar – Polar coordinate plot
  • semilogx – semilogarithmic plot
  • semilogy- semilogarithmic plot
  • subplot- Creates axis in tiled positions
  • Xlim – sets or queries x-axis limits
  • Ylim – sets or queries y-axis limits
  • Zlim – sets or queries z-axis limits

32. What are 3d visualization elements in Matlab?
3D visualization elements allow MATLAB to deal with 3D graphics.

  • surface and Mesh Plots – it includes plot matrices, visualize functions, color maps.
  • View Control – Used to control camera viewpoint, rotation, zooming, and aspect ratio and set axis limits.
  • Lighting – Used for adding and controlling scene lighting.
  • Transparency – Used to specify object transparency.
  • Volume Visualization – Used for volume data grid.

33. What is handle graphics in Matlab?
Handle graphics is a subsystem of MATLAB that handles graphics.

  • Handle graphics has high level commands for 2D and 3D data visualization.
  • Image processing, animation and presentation graphics can be generated using Handle graphics.
  • Low level commands allow customizing the graphics appearances.
  • Handle graphics allows to build customized graphics User interfaces

34. What is stress analysis in Matlab?
MATLAB is used in aerospace engineering, space environment.

  • MATLAB is suitable for flexible dynamics.
  • these domain experts conduct stress analysis on various structures like metallic and composite structures.
  • to analyze the stress, NAsTRan, IDEAD, Oracle and PATRan levels of proficiency is needed.
  • the tasks are also used on aircraft that is metallic structure.
  • the stress analysis includes control surface stiffness understanding, loop calculations, finite element modeling and fatigue testing requirement and analysis.

35. Explain Matlab mathematical function library?
MATLAB mathematical functions include computational algorithms.

  • the elementary computational functions are sum, sine, etc.
  • Matrix functions are available including matrix inversion.
  • special functions like Bessel are available.
  • MATLAB includes transformation functions, namely Fourier Transformation Functions.

36. What is Matlab working environment?
MATLAB working environment has various tools to work with MATLAB.

  • it has facilities to manage variables.
  • MATLAB supports export and import data across applications.
  • Certain tools are available to develop and manage MATLAB files.
  • Debugging and profiling of MATLAB applications are more flexible with MATLAB

37. Explain about Matlab language?
MATLAB language is a high-level matrix language.

  1. it has control structures, functions, data structures, I/O and OOP features.
  2. Allows rapid creation of throw-away programs.
  3. Allows creating large and complex application programs.
  4. MATLAB API allows to author C and FORTRan programs to interact with MATLAB.

38. Do You Know about Matlab system parts?
Following are the 5 main parts of MATLAB.

  • MATLAB Languange.
  • MATLAB working environment.
  • graphics handler.
  • MATLAB mathematical library.
  • MATLAB Application Program interface.

39. What is pseudo random binary sequence and numeric precision in Matlab?
pseudo random binary sequence : A form of generating an M-file in the new Frequency Domain system Identification toolbox, for a specified set of lengths (2^2-1 to 2^30-1) is called pseudo random binary sequence. it is also known as mlbs (for Maximum Length Binary sequence).
numeric precision : Numeric quantities which are represented as double precision floating point numbers is called numeric precision. On most computers, such numbers have 53 significant binary bits, which is about 15 or 16 decimal digits.

40. Which graphic system is Used in Matlab? Explain it.

  • the graphic system which is used in Matlab is known as handle graphics. it has few high level and low level commands.
  • High level commands performs data visualization, image processing, and animation for two dimensional and three dimensional presentation graphics.
  • Full customization of the appearance of graphics and building of complete graphical user interfaces on is done by low level commands in MATLAB applications.

Also Read 100+ MATLAB Questions and Answers