Department Of Computer Application.SOTech.North-Eastern Hill University

  • Home
  • India
  • Rongram
  • Department Of Computer Application.SOTech.North-Eastern Hill University

Department Of Computer Application.SOTech.North-Eastern Hill University The Dept. of CA estd. 2012, under the SOT, NEHU, funded by MHRD, Govt. of India, with a prime focus to impart quality, career/research-oriented Education.

Do take part in the Smart India Hackathon 2017Details: https://innovate.mygov.in/sih2017/600 Problem statements from var...
18/01/2017

Do take part in the Smart India Hackathon 2017
Details: https://innovate.mygov.in/sih2017/
600 Problem statements from various ministries are looking for solutions from young students across India.

Department is organizing National Workshop In Networking partnership with IIT Kanpur (Ecell) on 26th and 27th May. Regis...
13/05/2016

Department is organizing National Workshop In Networking partnership with IIT Kanpur (Ecell) on 26th and 27th May. Registration is going on.
If interested follow the link: nehu.ac.in/Schools/Technology/Computer%20Applications/announcement.php

Program to compute fast Fourier transform (FFT) output using C++.electronicsforu.com/electronics-projects/software-diy/i...
29/04/2016

Program to compute fast Fourier transform (FFT) output using C++.
electronicsforu.com/electronics-projects/software-diy/implementation-fast-fourier-transform-using-c

Here is a program to compute fast Fourier transform (FFT) output using C++. FFTs are of great importance to a wide variety of applications including digital signal processing (such as linear filtering, correlation analysis and spectrum analysis) and solving partial differential equations to algorith…

08/04/2016

Today's knowledge pill.
MATLAB ?
MATLAB (mat rix lab oratory) is a multi-paradigm
numerical computing environment and fourth-generation programming language . A proprietary programming language developed by MathWorks , MATLAB allows matrix manipulations, plotting of
functions and data, implementation of algorithms , creation of user interfaces , and interfacing with programs written in other languages, including C , C++ ,
Java, Fortran and Python .
Although MATLAB is intended primarily for numerical computing, an optional toolbox uses the MuPAD
symbolic engine , allowing access to symbolic computing abilities. An additional package, Simulink, adds graphical multi-domain simulation and model-based design for dynamic and embedded systems .
Syntax
The MATLAB application is built around the MATLAB scripting language. Common usage of the MATLAB application involves using the Command Window as an interactive mathematical shell or executing text files containing MATLAB code.
Variables
Variables are defined using the assignment operator,
= . MATLAB is a weakly typed programming language because types are implicitly converted
>> x = 17
x =
17
>> x = 'hat'
x =
hat
>> y = x + 0
y =
104 97 116
>> x = [ 3*4 , pi/2 ]
x =
12.0000 1.5708
>> y = 3*sin (x)
y =
-1.6097 3.0000
Vectors and matrices
A simple array is defined using the colon syntax:
init : increment : terminator . For instance:
>> array = 1: 2:9
array =
1 3 5 7 9
defines a variable named array (or assigns a new value to an existing variable with the name array ) which is an array consisting of the values 1, 3, 5, 7, and 9. That is, the array starts at 1 (the init value), increments with each step from the previous value by 2 (the increment value), and stops once it reaches (or to avoid exceeding) 9 (the terminator value).
>> array = 1: 3:9
array =
1 4 7
the increment value can actually be left out of this syntax (along with one of the colons), to use a default value of 1.
>> ari = 1 :5
ari =
1 2 3 4 5
assigns to the variable named ari an array with the values 1, 2, 3, 4, and 5, since the default value of 1 is used as the incrementer.
Indexing is one-based, [10] which is the usual convention for matrices in mathematics, although not for some programming languages such as C, C++, and Java.
Matrices can be defined by separating the elements of a row with blank space or comma and using a semicolon to terminate each row. The list of elements should be surrounded by square brackets: []. Parentheses: () are used to access elements and subarrays (they are also used to denote a function argument list).
>> A = [ 16 3 2 13 ; 5 10 11 8; 9 6 7
12; 4 15 14 1 ]
A =
16 3 2 13
5 10 11 8
9 6 7 12
4 15 14 1
>> A( 2, 3)
ans =
11
Sets of indices can be specified by expressions such as "2:4", which evaluates to [2, 3, 4]. For example, a submatrix taken from rows 2 through 4 and columns 3 through 4 can be written as:
>> A( 2: 4,3 :4)
ans =
11 8
7 12
14 1
A square identity matrix of size n can be generated using the function eye , and matrices of any size with zeros or ones can be generated with the functions
zeros and ones , respectively.
>> eye( 3,3 )
ans =
1 0 0
0 1 0
0 0 1
>> zeros (2 ,3)
ans =
0 0 0
0 0 0
>> ones (2, 3)
ans =
1 1 1
1 1 1
Most MATLAB functions can accept matrices and will apply themselves to each element. For example, mod(2*J,n) will multiply every element in "J" by 2, and then reduce each element modulo "n". MATLAB does include standard "for" and "while" loops, but (as in other similar applications such as R ), using the
vectorized notation often produces code that is faster to execute. This code, excerpted from the function
magic.m , creates a magic square M for odd values of
n (MATLAB function meshgrid is used here to generate square matrices I and J containing 1:n).

North-Eastern Hill University and Tezpur University come together for One Day Regional Workshop on Facilitation of Innov...
27/02/2016

North-Eastern Hill University and Tezpur University come together for One Day Regional Workshop
on
Facilitation of Innovation and Commercialisation on 29 feb.

26/02/2016

Its our great pleasure to meet Dr.Aynur Unal ( MS, and Ph.D., engineering and applied mathematics
1969 – 1973) , a great scientist gave her blessings , sharing her life experiences and shows us techniques how software (a virtual world) can change human kind to make world a better place.

Thank you . Aynur Unal (stanford alumni) for your gracious presence. we all will looking forward to meet you soon.

24/02/2016

If someone asks a CEO of big company this question – “How you hire people?” he/she might be telling you about several kinds of qualities like skill, intelligence, ethics value etc. these qualities are very necessary when you want a best person to work.

But Mark Zuckerberg , the CEO of Facebook thinks little a bit different.
As the founder of one of the most successful companies on the planet. Mark Zuckerberg has built a 200 billion company with more than 9000 employees. Recently, he placed in the top 20 of the Forbes richest people list.

Mark Zuckerberg told an audience in Barcelona for fourth installment of “ Question&Answer with mark. ”
“I will only hire someone to work directly for me if I would work for that person and It’s a pretty good test and I think this rule has served me well.” He also said, “in an alternative universe if things were different and I didn’t start the company, I would be happy to work fo r that person.”

Are you implementing image-processing algorithms in C++?Do you need some assistance: electronicsforu.com/electronicsforu...
24/02/2016

Are you implementing image-processing algorithms in C++?
Do you need some assistance: electronicsforu.com/electronicsforu/circuitarchives/responsive/view_article.asp?sno=2676&title=&b_type=new&id=14158&group_type=

CImg is a simple C++ toolkit intended to simplify the efforts of developers trying to implement new image-processing algorithms from scratch.

23/02/2016

How about implementing Fast Fourier Transform (FFT) Using C++?
electronicsforu.com/newelectronics/software/hitscc.asp?id=13593&article_type=15

Address

North-Eastern Hill University(NEHU), Chasingre, Tura. Pin:794002
Rongram
794002

Alerts

Be the first to know and let us send you an email when Department Of Computer Application.SOTech.North-Eastern Hill University posts news and promotions. Your email address will not be used for any other purpose, and you can unsubscribe at any time.

Share