Geeky Cody

Geeky Cody

Share

SAS and MATLAB training/projects Data processing and analysis has become a major task in a lot of application domains.

Most tools for defining analytical processes lack a user oriented interface- especially when it comes to Big Data analytics. The groundwork every application domain requires revolves around big data and its analysis. This platform will provide a holistic view towards every technology which is closely related to data analytics. Programming base, which otherwise might be a prerequisite will also be

13/05/2017

MATLAB projects and thesis guidance. Select from the list of projects below or give an idea of your own. Complete end to end and fast solutions including the following
-source code of the work
-report
-IEEE formatted paper
-1 video explaining the code
-1 video explaining how to run the code

http://geekycody.com/matlab-projects-list-on-geekycody/

Contact:
Rahul Kashyap
+91-9717480811 (Preferably watsapp)
[email protected]

Also checkout the YouTube channel for MATLAB project videos

https://www.youtube.com/channel/UC9p-VadShXL6aMsVdDlxLgg

MATLAB Projects - GeekyCody Following are all the available projects with GeekyCody. Just click on the link and you will be directed to the specific page. Following will be provided with the project Complete source code Research papers about the topic A video explaining everything about the project Report file Any special requ...

Ubuntu : Level 1 : Post 4 : Shell Scripting (ii) in Linux Ubuntu 10/11/2016

In this we will learn other things about shell-scripting Shortcuts in bash: history: Command that shows you previous commands that you have typed in this shell. Use ! to execute a command corresponding to a number. Ctrl-r: Searches for a command in history. When found, just press Enter to execute it. Ctrl-p: Go to the previous command in history. Ctrl-n: Go to the next command in history. [ 176 more words ]

http://geekycody.com/2016/11/11/ubuntu-level-1-post-4-shell-scripting-ii-linux-ubuntu/

Ubuntu : Level 1 : Post 4 : Shell Scripting (ii) in Linux Ubuntu In this we will learn other things about shell-scripting Shortcuts in bash: history: Command that shows you previous commands that you have typed in this shell. Use ! to execute a command corresponding to a number. Ctrl-r: Searches for a command in history. When found, just press Enter to execute it...

Ubuntu : Level 1 : Post 4 : Shell Scripting 12/10/2016

There are various types of shell on unix platform through which we do shell scripting: Bourne shell (sh) Bourne Again shell (bash) Korn shell (ksh) C shell (csh) TOPS C shell (tcsh) To know in which is currently running on your system use the following command in terminal: echo $SHELL To know all the shells that are available on your system then you should use following command: [ 406 more words ]

http://geekycody.com/2016/10/12/shell-scripting/

Ubuntu : Level 1 : Post 4 : Shell Scripting There are various types of shell on unix platform through which we do shell scripting: Bourne shell (sh) Bourne Again shell (bash) Korn shell (ksh) C shell (csh) TOPS C shell (tcsh) To know in which is currently running on your system use the following command in terminal: echo $SHELL   To know all…

Piping, Redirection in Linux 26/09/2016

PIPING : This will treat the output of one command as the input to the second command. This is done by using the pipe character i.e., " |". Syntax for the command is as for the same is as follows: command1 | command2 Here, "wc" will count the no.of characters, words and lines while " -l" is used so that only no.of lines get printed. [ 164 more words ]

http://geekycody.com/2016/09/26/piping/

Piping, Redirection in Linux PIPING : This will treat the output of one command as the input to the second command. This is done by using the pipe character i.e., ” |”. Syntax for the command is as for the same is as follows: command1 | command2 Here, “wc” will count the no.of characters, words and lines while ”… Read More »

MongoDB : Post 10 : Analysis specific query operators 24/09/2016

There are 4 possible queries which are heavily used for analysis specific operations.Them being, $mod $regex $text $where $mod : $mod selects all documents from a collection where the value of the field divided by the divisor returns a specific remainder. Example 1 : The following query selects all documents from the collection 'equality' where the value of the field 'age' when divided by 4 gives remainder 0. [ 74 more words ]

http://geekycody.com/2016/09/24/mongodb-post-10-analysis-specific-query-operators/

MongoDB : Post 10 : Analysis specific query operators There are 4 possible queries which are heavily used for analysis specific operations.Them being, $mod   $regex $text $where   $mod : $mod selects all documents from a collection where the value of the field divided by the divisor returns a specific remainder. Example 1 : The following query selects…

MongoDB : Post 9.1 : Specific query operators : $type 18/09/2016

$type : The operator is used when one is dealing with highly unstructured data ,where for the very same reason the data types are not predictable. This operator selects the documents where the value of the specified field is a part of the specified BSON type.Thus , it returns the documents where the BSON type of the field matches the BSON type passed to… [ 244 more words ]

http://geekycody.com/2016/09/18/mongodb-post-9-1-specific-query-operators-type/

MongoDB : Post 9.1 : Specific query operators : $type $type : The operator is used when one is dealing with highly unstructured data ,where for the very same reason the data types are not predictable. This operator selects the documents where the value of the specified field is a part of the specified BSON type.Thus , it returns the documents where the...

MongoDB : Post 9 : Specific query operators : $exists 18/09/2016

$exists : $exists operator , when true , $exists matches the documents that contain the field.It also includes the documents where the field value is 'null'.When false, the query returns only the documents that do not contain the field.The example with various operators will give a better picture : Example 1 : The following query selects all documents in the collection ' [ 161 more words ]

http://geekycody.com/2016/09/18/mongodb-post-9-specific-query-operators-exists/

MongoDB : Post 9 : Specific query operators : $exists $exists : $exists operator , when true , $exists matches the documents that contain the field.It also includes the documents where the field value is ‘null’.When false, the query returns only the documents that do not contain the field.The example with various operators will give a better picture :…

MongoDB : Post 8.3 : Logical query : $nor 17/09/2016

$nor : $nor performs a logical NOR opeartion on an array of one or more query expression and selects the documents that fail all the query expressions in the array.The example being : Example 1 : The query will return all documents whose field 'age' value is not equal to 25 and has the hobbies field with value not equal to "Singing".

http://geekycody.com/2016/09/18/mongodb-post-8-3-logical-query/

MongoDB : Post 8.3 : Logical query : $nor $nor :  $nor performs a logical NOR opeartion on an array of one or more query expression and selects the documents that fail all the query expressions in the array.The example being : Example 1 : The query will return all documents whose field ‘age’ value is not equal to 25 and has the hobbies… Rea...

MongoDB : Post 8.2 : Logical query :$not 17/09/2016

$not : performs a logical NOT operation on the specified expression and selects document that do not match the expression. Example being : Example 1 : The following query will select all documents from the collection 'equality' where the 'age' has value less than or equal 24 or the documents where 'age' field does not exist. It is recommended to use $not for logical dis-junctions and the $ne operator to check the contents of the field directly. One thing to keep in mind ,the $not operator does not support operations with $regex operator.

http://geekycody.com/2016/09/18/mongodb-post-8-2-logical-query-not/

MongoDB : Post 8.2 : Logical query :$not $not :  performs a logical NOT operation on the specified expression and selects document that do not match the expression. Example being :   Example 1 : The following query will select all documents from the collection ‘equality’ where the ‘age’ has value less than or equal 24 or the documents wher...

MongoDB : Post 8.1 : Logical query : $and 17/09/2016

$and : performs a logical AND operation on an array of two or more data values and selects the document that satisfies all the expressions in the array. Should return a boolean true value in both the cases.The example states : Example 1 : The query selects all the documents from the collection 'equality' where 'age' is equal to… [ 74 more words ]

http://geekycody.com/2016/09/18/mongodb-post-8-1-logical-query/

MongoDB : Post 8.1 : Logical query : $and $and :  performs a logical AND operation on an array of two or more data values and selects the document that satisfies all the expressions in the array. Should return a boolean true value in both the cases.The example states : Example 1 : The query selects all the documents from the collection ‘equ...

Want your school to be the top-listed School/college in Delhi?

Click here to claim your Sponsored Listing.

Location

Telephone

Address


Delhi
110019