Showing posts with label long. Show all posts
Showing posts with label long. Show all posts

Wednesday, 24 February 2016

How to Unlock the FPA Setting for an RCA TelevisionIn Feburary 2016 24,

In Feburary 2016 24,
Turn on your television by pressing the 'Power' button on the remote control. You must have a working remote control in order to reset the password for your FPA system and unblock the parental lock. Press the 'Vol +' button on the remote control and the 'Channel +' button on the front of the television at the same time until 'Enter New Password' appears on the screen.
Use the number pad on the remote to enter a new FPA passcode. This number should be four digits long. When finished entering the code, press the 'OK' button to save the code. Press the 'Menu' button to exit the new password creation screen. Write down your passcode as you will need it to change the parental lock settings.
Press the 'Menu' button on the remote to enter the main menu. Press the 'Ch +' and 'Ch -' buttons to move up and down in the menu. Select the 'Preferences' option and press the 'OK' button. Navigate to the 'Par Control' option on the next screen and press 'OK.'
Use the number pad to enter in your newly created passcode. Press 'OK' to display a list of television program ratings. Use the 'Ch +' and 'Ch -' buttons to navigate through the list and press the 'OK' button to lock or unlock a rating. If a rating has a check by it, it means it is locked. When finished choosing your settings, press the 'Menu' button to return to the main menu.
In Feburary 2016 24,

Monday, 22 February 2016

How to Give Someone FTP AccessIn Feburary 2016 22,

In Feburary 2016 22,
Log into the control panel of your Web host by entering your domain name, user name and password.
Select “FTP Accounts” under the “Files” section.
Enter a user name for the designer to use in the “Login” field.
Select a strong password. Make the password six to eight characters long and be sure that it contains a combination of letters, numbers and special characters. Enter this password twice.
Specify the directory to which you want to grant the person access. This allows the person to access only a specific portion of your account. The directory might be a subdomain or add-on domain, but it will not be your entire domain. If you do wish to provide unrestricted access, leave the directory field blank.
Click “Create” to create the FTP account.
Provide the user name and password to the person. Ask the person to notify you when he finishes the work. Check your website to make sure that the work is done correctly.
Delete the FTP account after the person no longer needs access. Log into the control panel of your Web host, select “FTP Accounts” and then select “Accounts Management.” Click “Delete” next to the FTP account that you wish to delete.
In Feburary 2016 22,

Thursday, 4 February 2016

How to Convert 3D Data to 2D Using MATLABIn Feburary 2016 04,

In Feburary 2016 04,
Import your data or create a test array. The following code creates a three-dimensional array of zeros in the form of repeated recordings from eight data channels. Each recording is 100 timepoints long and repeated 10 times.myData = zeros(100,10,8);
Convert the dimensionality of the array using the reshape function. To combine the 10 trials for each channel in the above example, use the following code:myNewData = reshape(myData,100*10,8);This function would return a 1,000-by-eight array with the first two dimensions combined.
Remove singleton dimensions using the squeeze function. Although this is not always necessary, after manipulating your data you may be left with a dimension of length one, called a singleton dimension. The following code would remove singleton dimensions from an array.betterArray = squeeze(arrayWithSingletons);
Analyze your data further as appropriate.
In Feburary 2016 04,