Friday 20 January 2012

impact factor journal list | List of Impact Factor Journals

Impact Factor mainly calculated based on Journal citation.citation means all the information identifying a publication with quality and professional.

In research area, more Universities must need to publish the papers on impact factor Journals , and also ask them PhD students to published.

In Impact factor journal changing based on selected domain.

For ex.

If you choose networking Domain means 1st preferred IEEE,
If you choose image processing Domain means 1st preferred springer,

So please choose your Journal and published paper....

Please give more comments for Pre-Phd scholars..

Wednesday 18 January 2012

How to create GUI on Matlab | Make a GUI on Matlab with example

Here we discuss with Creating GUI on Matlab

GUI : GUI is the Graphical user Interface for Particular project.

Simple Steps are following .

1.Goto File Menu ->New->GUI



2. Then Place the Axes, Text boxes and Buttons on your window (If you need then).


3.Then save the File.While saving matlab makes two files.fig and m file.


4.Then after saving , you press F5 then you sea your out put GUI.



Finally you have successfully create GUI on Matlab.In Matlab contain more toolboxes like text box,static box,radio button,check box,button,slider,axes,list box and ects...

Tuesday 17 January 2012

Matlab String Processing | Matlab String operations Concat,Substring and String Find index

Matlab string processing is very Simple.Here we looking some String Processing operation.

String : String is contain more than character.characters are alphabetical's ,numbers and special operators.

In matlab strings are stored in matrix and cell arry.

>> a = 'hai'; % This one is vector string
>> a = {'Hai','Friends'}; % cell array strings...

Con-cat Strings :

In matlab we have used two type of technique used to combine strings.
1.Using Normal square bracket.
2. strcat function (built in function on matlab)

example


>> a = 'hello';
>> b = ' world';
>> c = strcat(a,b) % for built in function

c =

hello world

>> a = [a b] % using square bracket..

a =

hello world

More Functions are below

strfind : Finding String Character .its return the index of pattern...

strmatch : Matching two string patterns.If match means it returns 1 otherwise 0.


Related Posts Plugin for WordPress, Blogger...