adplus-dvertising
frame-decoration

Question

Which functions help you to save and load variables?

a.

>> save Lays [a,b]
>> load('myfile.mat')

b.

>> save Lays {a b}
>> load myfile.mat

c.

>> save Lays “a,b”
>> load(myfile.mat)

d.

>> save Lays a b
>> load('myfile.mat')

Answer: (d).>> save Lays a b
>> load('myfile.mat')

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. Which functions help you to save and load variables?

Similar Questions

Discover Related MCQs

Q. To add comments in MATLAB, use _________

Q. To display comments of M-file, we use ____________

Q. Where do we need to store a function to call it in other programs?

Q. What are the difference between the ‘help’ and the ‘look for’ command?

Q. The function to close the windows containing graphs generated from MATLAB is __________

Q. What is not displayed by the Workspace?

Q. MATLAB allows modelling of different control systems using ___________

Q. How to stop the execution of a chain of commands?

Q. What are MEX files in MATLAB?

Q. How would you start a debugger in MATLAB?

Q. What is the extension of script files?

Q. What is the basic difference between M-files and MAT-files?

Q. What does the echo command do?

Q. How do you create a function file in MATLAB?

Q. A student is repeatedly calling a function file but gets no output. She has checked the file repeatedly so finally she asked her teacher about it. The teacher checked everything and finds the error and gives her a scolding. What is a silly mistake?

Q. A function is not returning values according to desired input values. What should be the correction?

Q. MEX files work on JAVA.

Q. What is the default increment value in a for-loop?

Q. A break statement will leave the outer loop.

Q. A for-loop can have multiple index values.