Logo Background
bsxfun – Apply element-by-element binary operation to two arrays with singleton expansion enabled Syntax 1 C = bsxfun(fun,A,B) Description C = b...

Matlab Forums News

[Matlab Programming] Image Processing by plami March 07, 2010, 01:40:46 PM
[Matlab Programming] mkdir failure by k2backhoe March 03, 2010, 12:37:13 AM
[Matlab Programming] I have a question by kindman February 28, 2010, 02:07:29 PM
[Matlab Programming] how to input and output wav files in Spectral subtraction by NubKadiya February 27, 2010, 10:00:44 AM
[Matlab Programming] pfilter error. please help. by jerin February 22, 2010, 01:44:02 PM

Most Recent Articles

  • round
    By matlabtutorials on December 5, 2009 | No Comments  Comments
    round Round towards nearest integer. round(X) rounds the elements of X to the nearest integers. See also floor, ceil, fix. Syntax Y = round(X) Description Y = round(X) rounds the elements of X to the nearest integers. For complex X, the imaginary and real parts are rounded independently. E...
  • Introduction to Vectors in Matlab
    By matlabtutorials on December 4, 2009 | No Comments  Comments
    Defining a Vector Matlab is a software package that makes it easier for you to enter matrices and vectors, and manipulate them. The interface follows a language that is designed to look a lot like the notation use in linear algebra. In the following tutorial, we will discuss some of the basics of w...
  • accumarray
    By matlabtutorials on September 9, 2009 | No Comments  Comments
    Construct array with accumulation Syntax A = accumarray(subs,val) A = accumarray(subs,val,sz) A = accumarray(subs,val,sz,fun) A = accumarray(subs,val,sz,fun,fillval) A = accumarray(subs,val,sz,fun,fillval,issparse) A = accumarray({subs1, subs2, …}, val, …) Description accumarray groups e...
  • abs
    By matlabtutorials on September 9, 2009 | No Comments  Comments
    Absolute value and complex magnitude Syntax 1 abs(X) Description abs(X) returns an array Y such that each element of Y is the absolute value of the corresponding element of X. If X is complex, abs(X) returns the complex modulus (magnitude), which is the same as 1 sqrt(real(X)....
  • plot
    By matlabtutorials on August 13, 2009 | No Comments  Comments
    plot Linear plot. plot(X,Y) plots vector Y versus vector X. If X or Y is a matrix, then the vector is plotted versus the rows or columns of the matrix, whichever line up. If X is a scalar and Y is a vector, length(Y) disconnected points are plotted. plot(Y) plots the columns...