In need of Fixed-point algorithm

hi peeps,
Im in need ( a very urgent need ) of a fix-point algorithm , with explanations if possible. Can anybody point me to the right direction?
thanks....

See if this helps you,
To find a solution to p=g(p)given an initial approximation p0.
Input: Initial approximation p0; tolerance TOL; maximum number of
     iterations N0.
Output: Approximate solution p or message of failure.
Step 1: Set i=1;
Step 2: While i<=N0 do Steps 3-6.
Step 3: Set p=g(p0). (Compute p.)
Step 4: If |p-p0| < TOL then
OUTPUT (p); (Procedure completed successfully.)
STOP.
Step 5: Set i=i+1.
Step 6: Set p0=p. (Update p0.)
Step 7: OUTPUT('Method failed after N0 iterations, N0=', N0);
(procedure completed unsuccessfully.)
STOP.
Fixed-Point Iteration Code in C Language
* Fixed-Point Iteration Code in C Language
* To find a solution to p = g(p) given an
* initial approximation p0
* INPUT: initial approximation; tolerance TOL;
* maximum number of iterations NO.
* OUTPUT: approximate solution p or
* a message that the method fails.
#include<stdio.h>
#include<math.h>
#define true 1
#define false 0
main()
double TOL,P0,P;
int I,NO,FLAG,OK;
FILE *OUP[1];
void INPUT(int *, double *, double *, int *);
void OUTPUT(FILE **, int *);
double absval(double);
double G(double );
INPUT(&OK, &P0, &TOL, &NO);
if (OK)
OUTPUT(OUP, &FLAG);
/* STEP 1 */
I = 1; OK = true;
/* STEP 2 */
while((I<=NO) && OK)
/* STEP 3 */
/* compute P(I) */
P = G(P0);
if (FLAG == 2)
fprintf(*OUP, "%3d %15.8e\n", I, P);
/* STEP 4 */
if (absval(P-P0) < TOL)
/* procedure completed successfully */
fprintf(*OUP, "\nApproximate solution P = %12.8f\n", P);
fprintf(*OUP, "Number of iterations = %3d", I);
fprintf(*OUP, " Tolerance = %14.8e\n",TOL);
OK = false;
else
/* STEP 5 */
I++;
/* STEP 6 */
/* update P0 */
P0 = P;
if (OK)
/* STEP 7 */
/* procedure completed unsuccessfully */
fprintf(*OUP, "\nIteration number %3d", NO);
fprintf(*OUP, " gave approximation %12.8f\n", P);
fprintf(*OUP, "not within tolerance %14.8e\n",TOL);
fclose(*OUP);
/* Change function G for a new problem */
double G(double X)
double g;
g = sqrt(10.0 / (4.0 + X));
return g;
void INPUT(int OK, double P0, double TOL, int NO)
char AA;
printf("This is the Fixed-Point Method.\n");
printf("Has the function G been created in the program immediately preceding\n");
printf("the INPUT function?\n");
printf("Enter Y or N\n");
scanf("%c",&AA);
if ((AA == 'Y') || (AA == 'y'))
*OK = false;
printf("Input initial approximation\n");
scanf("%lf",P0);
while(!(*OK))
printf("Input tolerance\n");
scanf("%lf", TOL);
if (*TOL <= 0.0)
printf("Tolerance must be positive\n");
else
*OK = true;
*OK = false;
while (!(*OK))
printf("Input maximum number of iterations - no decimal point\n");
scanf("%d", NO);
if (*NO <= 0)
printf("Must be positive integer\n");
else
*OK = true;
else
printf("The program will end so that the function G can be created\n");
*OK = false;
void OUTPUT(FILE **OUP, int *FLAG)
char NAME[30];
printf("Select output destination\n");
printf("1. Screen\n");
printf("2. Text file\n");
printf("Enter 1 or 2\n");
scanf("%d", FLAG);
if (*FLAG == 2)
printf("Input the file name in the form - drive:name.ext\n");
printf("For example: A:OUTPUT.DTA\n");
scanf("%s", NAME);
*OUP = fopen(NAME, "w");
else
*OUP = stdout;
printf("Select amount of output\n");
printf("1. Answer only\n");
printf("2. All intermeditate approximations\n");
printf("Enter 1 or 2\n");
scanf("%d", FLAG);
fprintf(*OUP, "FIXED-POINT METHOD\n");
if (*FLAG == 2)
fprintf(*OUP, " I P\n");
/* Absolute Value Function */
double absval(double val)
if (val >= 0)
return val;
else
return -val;

Similar Messages

  • Need a fix to error message...AppleSyncNotifier.exe - Entry Point Not Found  The procedure entry point sqlite3_wal_checkpoint could not be located in the dynamic link library SQLite.dll

    need a fix to error message...AppleSyncNotifier.exe - Entry Point Not Found  The procedure entry point sqlite3_wal_checkpoint could not be located in the dynamic link library SQLite3.dll

    Any answers how to fix it? All Im getting is error for the past 3 days!

  • Need arithmetic operation result in Fixed point arithmetic disabled prg

    Hi,
    I am writing an enhancement which is in standard SAP program which is not enabled for 'Fixed arithmetic' calculations.
    I need to do some actual arithmetic operation involving packed numbers in my enhancement.
    Say 
    p1 = '2.00'
    p2 = '12.00'.
    result = p1 * p2.
    result coming is 2400.00. This is because Fixed point arithmetic is disabled in standard program.
    I need a result of 24.00 . Is there any solution to this apart from dividing it with 100?
    Regards,
    Dhana

    based on P1 and P2 values you need to divide the value with 100 or 1000 as per the number of decimals on P1 and P2

  • How do I find all the fixed points of a...

    How do I find the number of fixed points in a randomly increasing sequence of integers in O(log n) time?
    (1 1 1 1 5 7) as input will return 1. Because 5 is the fifth element.

    Consider this example instead of the erroneous example given above.
    Input: {-1, 0, 2, 4, 5, 6, 7}
    Output: 4
    I need an algorithm to find the number of fixed points of an increasing sequence in O(log n) time.
    Yes. The sequence is known beforehand.
    I was considering something like a binary search, but it would take more than O(log n) to find the number of fixed points.
    So currently I am thinking of using something like an averaging scheme, but I haven't found any solution yet.

  • I need a fix from HP which outlined how to remove the registry entries which were stopping recognition of the cd/dvd reader but then itunes cannot find the reader.

    I need a fix from HP which outlined how to remove the registry entries which were stopping recognition of the cd/dvd reader but then itunes cannot find the reader.

    Thanks for pointing that out, it was not apparent on the day i used them and wrote the How-To. The links have been replaced with the SID# (Solution ID #) and the title given for the Article.
    Have fun

  • Usage of NOT having Fixed Point Arithmetic?

    Hello!
    SAP recommends to always do programs with Fixed Point Arithmetic attribute checked. Please don't explain here what is Fixed Point Arithmetic - I know this and it's is not my question.
    The question is: why do we have it at all? Why aren't all programs simply fixed-point-arithmetic without attribute to activate or deactivate this?
    I suppose that there are situations which require Fixed Point Arithmetic NOT being set, but I can't imagine any. Could anyone offer an explanation?
    Thanks in advance!
    Igor
    Edited by: Igor Barbaric on Mar 21, 2008 9:30 AM
    No replies - I'll try to bring the question to your attention once again:
    Please, does anybody know the purpose of NOT having Fixed Point Arithmetic?

    Please check if this helps u
    This attribute defines, whether for numerical data objects of data type p (packed numbers) is the decimal point is relevant in calculations or assignments or if it is omitted. Normally, this attribute is always switched on and you might ask, why it can be switched off at all. Well, in very ancient times packed numbers had no real decimal point. It was taken into account only for presentation purposes. In order to stay downward compatible, for the introduction of fixed point arithmetic this switch was needed. In fact there are still programs that switch fixed point arithmetic off ¨C for example financial programs that calculate on the basis of cents instead of dollars.
    Thanks Arjun

  • Issue with fixed point number output from 9219 module for full bridge measurement (cRIO/FPGA)

    Hi,
    I have a question regarding the fixed point output acquired from a 9219 module (in FPGA on a cRIO) when setup to acquire a strain measurement (full bridge).
    Software: Labview 2009
    Hardware: cRIO-9012 (NI-RIO 3.2.1), NI-9219 module
    The 9219 module is configured in the project as follow:
    Ch0: Full-Bridge +/- 7.8mV/V
    Ch1: Voltage +/- 4V
    Ch2: Voltage +/- 15V
    Ch3: Voltage +/- 60V
    The calibration mode is 'Calibrated' so the FPGA outputs fixed point numbers. 
    My issue is that the precision of the fixed point number for Ch0 (strain) is "(fixed point <+/-32,-1>[-2.5e1,2.5e1]:1.16e-10)", which indicates that the fixed point number is a value between +/- 0.25 and not the +7.8mV/V as I expected?
    The fixed point number does not change in precision whether the range for the strain measurement is set at +/- 7.8mV/V or +/-64mV/V (the two available options).
    As the fixed point number doesn't change precision I'm assuming that changing the range of the strain measurement changes the resolution of the acquired number? And as such I will need to perform additional scaling on the fixed point number to convert it to the expected range?
    There is no mention of scaling of the voltage or strain measurements mentioned in any documentation or examples, with the only scaling example provided for the thermocouple measurements.
    Any help/clarification is much appreciated.
    Regards,
    Mike

    Hello Mike,
    Hopefully I can help clarify some of the behavior you are seeing.
    My issue is that the precision of the fixed point number for Ch0 (strain) is "(fixed point <+/-32,-1>[-2.5e1,2.5e1]:1.16e-10)", which indicates that the fixed point number is a value between +/- 0.25 and not the +7.8mV/V as I expected?
    For calibrated values on the FPGA VI, the returned data is a Voltage measurement, not a directly calculated strain value. Based on the specified ranges for the 9219 in a Full bridge configuration, 250 mV will encompass all possible input values, at the module provided excitation (2-2.7V dependent on the sensor gage resistance).
    The fixed point number does not change in precision whether the range for the strain measurement is set at +/- 7.8mV/V or +/-64mV/V (the two available options).
    As you may notice from the fix-point definition, the fixed point data contains 32-bit precision which is larger than the acquired precision of 24-bits provided by the 9219. The fixed point data-type is coded to accept input encompassing both the range and precision of the instrument; such that, no additional coercion of the input data values is required based on user-defined software settings, i.e. the bridge sensitivities +/- 7.8mV/V or +/-64mV/V. 
    As the fixed point number doesn't change precision I'm assuming that changing the range of the strain measurement changes the resolution of the acquired number? And as such I will need to perform additional scaling on the fixed point number to convert it to the expected range?
    The documentation does not clearly define that by varying the discrete levels of strain input (+/- 7.8mV/V or +/-64mV/V) the range of the ADC on the module is also adjusted. I am working to follow up further on this topic, to provide a clarification on the module documentation. As for scaling, the voltage values acquired regardless of the ADC resolution will still be related strain via the bridge sensitivity. The resolution of the ADC will simply define the smallest measurable change in the strain value. 
    There is no mention of scaling of the voltage or strain measurements mentioned in any documentation or examples, with the only scaling example provided for the thermocouple measurements.
    For converting the acquired voltage values to a strain measurement, I would recommend the documentation linked here for a detailed explanation on strain calculation. Often, users will forward the acquired voltage data as fixed point values through a DMA FIFO to the RT controller on the Compact RIO; such that, they may handle conversion from voltage to strain using floating point math in real-time. 
    I hopes these responses provided a bit of clarity. I will continue to work to provide additional information on the 9219 specification information. Please post back any further questions.
    Cheers!
     Edit: Forgot to add the link.
    Message Edited by Pcorcs on 04-14-2010 04:55 PM
    Patrick Corcoran
    Application Engineering Specialist | Control
    National Instruments

  • Need Help Fixing Site for IE6

    Hello.
    I've been working on a CSS drop down menu for my website
    which works fine in Internet Explorer 7 and all other modern
    browsers. But I used Browsershots.org to have a look at the site in
    IE6 and it was terrible. I am using Windows Vista so there is no
    way of me getting IE 6 on this machine (MultipleIE's doesn't work).
    So I need some help fixing for IE6. Page url is
    http://runecentral.net/index.php
    HTML Code and CSS Code;
    First the list
    <div class="menu">
    <ul id="nav">
    <li id="fi"><a href="
    http://www.runecentral.net/">Home</a></li>
    <li id="fi"><a href="
    http://forum.runecentral.net/">Forums</a></li>
    <li id="fi"><a href="
    http://chat.runecentral.net/">Chat</a></li>
    <li id="fi">Guides
    <ul>
    <li id="si"><a href="/skills.php">Skill
    Guides</a></li>
    <li id="si"><a href="/quests.php">Quest
    Guides</a></li>
    <li id="si"><a href="/minigames.php">Mini Game
    Guides</a></li>
    <li id="si"><a href="/guilds.php">Guild
    Guides</a></li>
    <li id="si"><a href="/cities.php">City
    Guides</a></li>
    <li id="si"><a
    href="/monsterhunting.php">Monster Hunting
    Guides</a></li>
    <li id="si"><a href="/moneymaking.php">Money
    Making Guides</a></li>
    <li id="si"><a
    href="/miscellaneous.php">Miscellaneous
    Guides</a></li>
    </ul>
    </li>
    <li id="fi">Databases
    <ul>
    <li id="si"><a href="/items.php">Item
    Database</a></li>
    <li id="si"><a href="/monsters.php">Monster
    Database</a></li>
    <li id="si"><a href="/npcs.php">NPC
    Database</a></li>
    <li id="si"><a href="/shops.php">Shop
    Database</a></li>
    </ul>
    </li>
    <li id="fi">Tools
    <ul>
    <li id="si"><a href="/skillcalcs.php">Skill
    Calculators</a></li>
    <li id="si"><a href="/skillplanners.php">Skill
    Planners</a></li>
    <li id="si"><a href="/maxhit.php">Max Hit
    Calculator</a></li>
    <li id="si"><a href="/combatcalc.php">Combat
    Calculator</a></li>
    </ul>
    </li>
    <li id="fi">Maps
    <ul>
    <li id="si"><a href="/worldmap.php">Official
    World Map</a></li>
    <li id="si"><a href="/dungeons.php">Dungeon
    Maps</a></li>
    </ul>
    </li>
    <li id="fi">Archives
    <ul id="nav">
    <li id="si"><a href="/newsarchive.php">News
    Archive</a></li>
    <li id="si"><a href="/pollarchive.php">Poll
    Archive</a></li>
    </ul>
    </li>
    <li id="fi"><a
    href="/contact.php">Contact</a></li>
    </ul>
    </div>
    Now the main CSS code
    .menu ul, li {
    margin: 0;
    padding: 0;
    list-style-type: none;
    .menu {
    text-align: center;
    font-size: 14px;
    height: 30px;
    line-height: 30px;
    .menu a {
    text-decoration: none;
    color: #FFFFFF;
    ul#nav {
    width: 100%;
    height: 30px;
    margin: 0 auto;
    ul#nav li {
    position: relative;
    float: left;
    #fi {
    width: 75px;
    height: 30px;
    cursor: pointer;
    #si {
    width: 170px;
    float: left;
    height: 25px;
    line-height: 25px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-right-color: #000000;
    border-bottom-color: #000000;
    border-left-color: #000000;
    background-color: red;
    ul#nav li:hover {
    background-color:#00FFCC;
    ul#nav li ul {
    display: none;
    ul#nav li:hover ul {
    display: inline;
    float: left;
    height: auto;
    padding: 0;
    margin: 0;
    text-align: left;
    ul#nav li:hover ul li {
    display: block;
    margin: 0;
    padding: 0 0 0 5px;
    height: 100%;
    ul#nav li#fi a {
    display: block;
    height: 100%;
    ul#nav li#fi:hover {
    background-image: url(/img/fixedbar_over.png);
    If you need any more code just check the page source.
    I know this is quite a lot to ask but I am really stuck as I
    cannot do it myself so any help would be greatly appreciated.
    Many thanks and regards,
    Perry Roper

    However, if it's
    http://www.runecentral.com/
    then you need to fix some of
    the 150 validation errors here:
    http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.runecentral.com%2F
    Jo
    "josie1one" <[email protected]> wrote in message
    news:[email protected]...
    >>
    http://runecentral.net/index.php
    > Appears to be a bad link
    >
    > --
    > Jo
    >
    >
    >
    > "Perry|" <[email protected]> wrote in
    message
    > news:[email protected]...
    >> Hello.
    >>
    >> I've been working on a CSS drop down menu for my
    website which works fine
    >> in
    >> Internet Explorer 7 and all other modern browsers.
    But I used
    >> Browsershots.org
    >> to have a look at the site in IE6 and it was
    terrible. I am using Windows
    >> Vista
    >> so there is no way of me getting IE 6 on this
    machine (MultipleIE's
    >> doesn't
    >> work). So I need some help fixing for IE6. Page url
    is
    >>
    http://runecentral.net/index.php
    HTML Code and CSS Code;
    >>
    >> First the list
    >>
    >> <div class="menu">
    >> <ul id="nav">
    >> <li id="fi"><a href="
    http://www.runecentral.net/">Home</a></li>
    >> <li id="fi"><a href="
    http://forum.runecentral.net/">Forums</a></li>
    >> <li id="fi"><a href="
    http://chat.runecentral.net/">Chat</a></li>
    >> <li id="fi">Guides
    >>
    >> <li id="si"><a href="/skills.php">Skill
    Guides</a></li>
    >> <li id="si"><a href="/quests.php">Quest
    Guides</a></li>
    >> <li id="si"><a
    href="/minigames.php">Mini Game Guides</a></li>
    >> <li id="si"><a href="/guilds.php">Guild
    Guides</a></li>
    >> <li id="si"><a href="/cities.php">City
    Guides</a></li>
    >> <li id="si"><a
    href="/monsterhunting.php">Monster Hunting
    >> Guides</a></li>
    >> <li id="si"><a
    href="/moneymaking.php">Money Making Guides</a></li>
    >> <li id="si"><a
    href="/miscellaneous.php">Miscellaneous
    Guides</a></li>
    >>
    >> </li>
    >> <li id="fi">Databases
    >>
    >> <li id="si"><a href="/items.php">Item
    Database</a></li>
    >> <li id="si"><a
    href="/monsters.php">Monster Database</a></li>
    >> <li id="si"><a href="/npcs.php">NPC
    Database</a></li>
    >> <li id="si"><a href="/shops.php">Shop
    Database</a></li>
    >>
    >> </li>
    >> <li id="fi">Tools
    >>
    >> <li id="si"><a
    href="/skillcalcs.php">Skill Calculators</a></li>
    >> <li id="si"><a
    href="/skillplanners.php">Skill Planners</a></li>
    >> <li id="si"><a href="/maxhit.php">Max
    Hit Calculator</a></li>
    >> <li id="si"><a
    href="/combatcalc.php">Combat Calculator</a></li>
    >>
    >> </li>
    >> <li id="fi">Maps
    >>
    >> <li id="si"><a
    href="/worldmap.php">Official World Map</a></li>
    >> <li id="si"><a
    href="/dungeons.php">Dungeon Maps</a></li>
    >>
    >> </li>
    >> <li id="fi">Archives
    >> <ul id="nav">
    >> <li id="si"><a
    href="/newsarchive.php">News Archive</a></li>
    >> <li id="si"><a
    href="/pollarchive.php">Poll Archive</a></li>
    >>
    >> </li>
    >> <li id="fi"><a
    href="/contact.php">Contact</a></li>
    >>
    >> </div>
    >>
    >> Now the main CSS code
    >>
    >> .menu ul, li {
    >> margin: 0;
    >> padding: 0;
    >> list-style-type: none;
    >> }
    >> .menu {
    >> text-align: center;
    >> font-size: 14px;
    >> height: 30px;
    >> line-height: 30px;
    >> }
    >> .menu a {
    >> text-decoration: none;
    >> color: #FFFFFF;
    >> }
    >> ul#nav {
    >> width: 100%;
    >> height: 30px;
    >> margin: 0 auto;
    >> }
    >> ul#nav li {
    >> position: relative;
    >> float: left;
    >> }
    >> #fi {
    >> width: 75px;
    >> height: 30px;
    >> cursor: pointer;
    >> }
    >> #si {
    >> width: 170px;
    >> float: left;
    >> height: 25px;
    >> line-height: 25px;
    >> border-right-width: 1px;
    >> border-bottom-width: 1px;
    >> border-left-width: 1px;
    >> border-right-style: solid;
    >> border-bottom-style: solid;
    >> border-left-style: solid;
    >> border-right-color: #000000;
    >> border-bottom-color: #000000;
    >> border-left-color: #000000;
    >> background-color: red;
    >> }
    >> ul#nav li:hover {
    >> background-color:#00FFCC;
    >> }
    >> ul#nav li ul {
    >> display: none;
    >> }
    >> ul#nav li:hover ul {
    >> display: inline;
    >> float: left;
    >> height: auto;
    >> padding: 0;
    >> margin: 0;
    >> text-align: left;
    >> }
    >> ul#nav li:hover ul li {
    >> display: block;
    >> margin: 0;
    >> padding: 0 0 0 5px;
    >> height: 100%;
    >> }
    >> ul#nav li#fi a {
    >> display: block;
    >> height: 100%;
    >> }
    >> ul#nav li#fi:hover {
    >> background-image: url(/img/fixedbar_over.png);
    >> }
    >>
    >> If you need any more code just check the page
    source.
    >>
    >> I know this is quite a lot to ask but I am really
    stuck as I cannot do it
    >> myself so any help would be greatly appreciated.
    >>
    >> Many thanks and regards,
    >>
    >> Perry Roper
    >>
    >
    >

  • I am unable to open my Photoshop program after installing the entire Creative Suite: Premium Production 6. All other programs work, but with Photoshop it says that the program is "locked or in use by another user". I need this fixed immediately.

    I am unable to open my Photoshop program after installing the entire Creative Suite: Premium Production 6. All other programs work, but with Photoshop it says that it "Could not open a scratch file because the file is locked, you do not have necessary access permissions, or another program is using the file. Use the 'Properties' command in the Windows Explorer to unlock the file." Then I select "OK" and the next message comes up "Could not initialize Photoshop because the file is locked, you do not have the necessary permissions, or another program is using the file. Use the 'Properties' command in the Windows Explorer to unlock this file. I installed all of the programs on the same day from a CD. I need this fixed immediately.
    I am not interested in switching to Creative Cloud, so don't even suggest it. I spoke to Mashmi (or something to that effect) on the "Support" Chat and there was absolutely no support. Useless actually.
    Thanks in advance.

    Could not open a scratch file because the file is locked or you do not have the necessary access privileges. (…) | Mylen…
    Mylenium

  • Need to fix the width of a column in interactive report

    Hi,
    I have a column named 'Comment'. Its have a huge data due to which the lenght of that column in interactive report get increased. I need to fix the length to a desired value.
    I used following code in Region Footer:
    <style>
    table.apexir_WORKSHEET_DATA td[headers=COMMENTS] {
      _width: 300px;
      min-width: 50px;
      max-width: 300px }
    </style>
    Its solved the problem by fixing the width of the column but the column is not showing the full data now. It is hiding most of its part to fit it in that column.
    Please give some idea.
    Thanks,
    Chandru

    Hi,
    I believe you will want to add a height specification to allow for multiple lines.  And you may want/need to specifiy how you want lines to wrap.
    Add (for example):
      height: 60px; 
      white-space: nowrap; 
      word-wrap: break-word;
    There are defaults and several options for white-space and word-wrap.  You may want to look them up and give them a try for comparison.
    Howard

  • When I send an email in Thunderbird it looks fine, but when the recipient tries to print it, the font is unreadablly small. Is there a setting I need to fix?

    I have Thunderbird version 24.3.0 downloaded to my Windows 7 computer.
    When I send an email in Thunderbird it looks fine and when the recipient receives it, it looks fine on the screen, but when she tries to print it, the font is unreadably small. This happens on every email I send her, but not other people's emails she receives. It has happened on some of the emails I receive back from her that contain the information I sent her.
    Is there a setting I need to fix or something I can do on my end to address this so this doesn't happen. She is receiving email through AOL online. I believe she is viewing it through either IE or Chrome.

    I recently tried sending myself an email through Thunderbird to another email account to see if that was the case, but the email came in with a font so tiny that it was unreadable. I had chosen a font type and size (arial 10) and just coming into my outlook inbox was virtually unreadable.
    And referring to the person I work with, she doesn't have problems getting anyone else's emails, just ones I send from Thunderbird.

  • Firefox 29 is not working, we need a fix. I am on windows 8.1 and have moved on to Chrome.

    Since upgrading to Firefox 29, it keeps crashing and I am unable to use it. There was no problem with Firefox 28. We need a fix urgently. Until that time I have moved on Chrome.

    Can you give me your crash reports?
    #Enter ''about:crashes'' in the Firefox address bar and press Enter. A Submitted Crash Reports list will appear, similar to the one shown below.
    #Copy the '''5''' most recent Report IDs that start with '''bp-''' and paste them into your response here.

  • My iWeb just crashed and has vanished from my computer. The icon is visible but it will not open. Can anyone help? I desperately need it fixed as its my business website and i was in the process of updating it

    My iWeb just crashed and has vanished from my computer. The icon is visible but it will not open. Can anyone help? I desperately need it fixed as its my business website and i was in the process of updating it

    Where was this site hosted?
    Apple eliminated iWeb in July!!!
    http://en.wikipedia.org/wiki/IWeb#Discontinuation_of_iWeb_in_iCloud_Transition
    http://www.macworld.com/article/1160728/apple_mobile_me_transition_faq.html

  • HT1212 Hello, I need to fix my iPad Hello, I need to fix my iPad because of a password failing. I know that because of a password failing. I know that I need to restore it; but it says I need to turn off Find My iPad... Any advice? I have IOS 7 on it by t

    Hi!
    I need to fix my iPad on IOS 7.
    It has the password locked and says connect to iTunes I did, and synced it. Also tried to restore with backup from last May.
    I know how to get it restored so the password fixes but...
    The computer says "Turn off Find My iPad before restoring"
    If I can't access the iPad's Settings how will I turn it off?
    Please! Help! 

    It also may take a bit for Apple servers to update your information. You are sure it is this iPad that you removed from your Apple ID?
    I would wait an hour or so and try it again. You may want to put it in Recovery Mode:
    http://support.apple.com/kb/HT1808?viewlocale=en_US&locale=en_US

  • Uloading ebook using iProducer rec'd error: ERROR ITMS-9000: "Unable to parse nav file: toc.ncx" at Book. I don't understand and need help fixing it. Please Help

    Uloading ebook using iProducer rec'd error: ERROR ITMS-9000: "Unable to parse nav file: toc.ncx" at Book. I don't understand and need help fixing it. Please Help if you've the knowledge.
    Many Thanks

    Yep, i just did it again. The entire scroll-bar widget, complete with formatted text, graphics, etc., pasted itself nicely in another book. Two different files, the same widget.
    I use the scroll-bar widgets for most of my texts. (I have audio buttons on the side, and the scripts are within the widget, to the side). My only text is within widgets, and text boxes, naturally. 
    I am following your recommendation: cleaning files, etc. I am remaking the book anew. I need to convince the EPUB bot or whatever that my file looks and works nicely on all my devices. You would expect an error message when previewing the book: 'Hey Amigo, your file is flawed, stop working on it, and get back to the drawing board." Should be able to try again next Monday.

Maybe you are looking for