answersLogoWhite

0


Best Answer

zeros makes a matrix of the specified dimension, filled with zeros.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is function of zeros command in matlab?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Which command is used to read uncomment the data in Matlab?

CTRL + T is the command used to uncomment data in Matlab.


Which command is used to clear the command window of Matlab?

The "clc" command is used to clear the command window in Matlab.


Which command is used to read comment the data in Matlab?

CTRL + R is the command used for commenting some part of data in Matlab.


What is command window in matlab?

command window is a window in matlab environment, role of command window is that it shows output of some particular programme other than graph.


How do you implement awgn in MATLAB without using awgn function?

no way... use awgn function in matlab


How do you call a function in GUI in matlab?

Just type it in the command line. That will call functions, scripts, load data (that are in the correct directory).


Which is the function of matlab?

matlab stands for matrix laboratory.. the function of matlab to create different types of signal and observe them .and their are so many different functions of matlab like, simulink fuzzy logic,simply arithmetic ,GUI etc


Code for circular convolution matlab?

Please check the help files of the matlab circular convolution . Matlab already has a readymade function for it.


How do you modulate in matlab without using matlab tools?

You would have to write your own code for a modulation (Matlab has a convolution function not in the tools), otherwise you can use its built in function in the signal processing toolbox.


What is the different types of windows in Matlab?

There are 4 windows in matlab : 1)The Command Window 2)Workspace Window 3)Command History Window 4)Current directory Window


What is the matlab function for integration?

This may not be correct as I mainly use maple, but from my experience, the command for integration in most of the mathematics programmes I've used is int(f(x),x) which will find an indefinite integral of the function f(x) with respect to x. The command to find a definite integral over a and b in matlab will probably be either int(f(x), x=a..b) or int(f(x),x,a,b).


String to matrix converting matlab code?

Here is an example code snippet in MATLAB that converts a string into a matrix: str = '123456789'; % input string numChars = length(str); % number of characters in the string matrixSize = ceil(sqrt(numChars)); % calculate the size of the resulting matrix % pad the string with zeros to make it divisible by the matrix size str = [str, num2str(zeros(1, matrixSize^2 - numChars))]; % reshape the string into a matrix matrix = reshape(str, matrixSize, matrixSize); This code takes an input string and calculates the size of the matrix needed to store all the characters. It then pads the string with zeros to make it divisible by the matrix size. Finally, it uses the reshape function to convert the string into a matrix.