Example
#{example}"); ipb.editor_values.get('templates')['togglesource'] = new Template(""); ipb.editor_values.get('templates')['toolbar'] = new Template(""); ipb.editor_values.get('templates')['button'] = new Template("
Emoticons
"); // Add smilies into the mix ipb.editor_values.set( 'show_emoticon_link', false ); ipb.editor_values.set( 'bbcodes', $H({"snapback":{"id":"1","title":"Post Snap Back","desc":"This tag displays a little linked image which links back to a post - used when quoting posts from the board. Opens in same window by default.","tag":"snapback","useoption":"0","example":"[snapback]100[/snapback]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"topic":{"id":"5","title":"Topic Link","desc":"This tag provides an easy way to link to a topic","tag":"topic","useoption":"1","example":"[topic=1]Click me![/topic]","switch_option":"0","menu_option_text":"Enter the topic ID","menu_content_text":"Enter the title for this link","single_tag":"0","optional_option":"0","image":""},"post":{"id":"6","title":"Post Link","desc":"This tag provides an easy way to link to a post.","tag":"post","useoption":"1","example":"[post=1]Click me![/post]","switch_option":"0","menu_option_text":"Enter the Post ID","menu_content_text":"Enter the title for this link","single_tag":"0","optional_option":"0","image":""},"spoiler":{"id":"7","title":"Spoiler","desc":"Spoiler tag","tag":"spoiler","useoption":"0","example":"[spoiler]Some hidden text[/spoiler]","switch_option":"0","menu_option_text":"","menu_content_text":"Enter the text to be masked","single_tag":"0","optional_option":"0","image":""},"acronym":{"id":"8","title":"Acronym","desc":"Allows you to make an acronym that will display a description when moused over","tag":"acronym","useoption":"1","example":"[acronym='Laugh Out Loud']lol[/acronym]","switch_option":"0","menu_option_text":"Enter the description for this acronym (EG: Laugh Out Loud)","menu_content_text":"Enter the acronym (EG: lol)","single_tag":"0","optional_option":"0","image":""},"hr":{"id":"12","title":"Horizontal Rule","desc":"Adds a horizontal rule to separate text","tag":"hr","useoption":"0","example":"[hr]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"1","optional_option":"0","image":""},"php":{"id":"14","title":"PHP Code","desc":"Allows you to enter PHP code into a formatted/highlighted syntax box","tag":"php","useoption":"0","example":"[php]$variable = true;\n\nprint_r($variable);[/php]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"html":{"id":"15","title":"HTML Code","desc":"Allows you to enter formatted/syntax-highlighted HTML code","tag":"html","useoption":"0","example":"[html]\n \n[/html]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"sql":{"id":"16","title":"SQL Code","desc":"Allows you to enter formatted/syntax-highlighted SQL code","tag":"sql","useoption":"0","example":"[sql]SELECT p.*, t.* FROM posts p LEFT JOIN topics t ON t.tid=p.topic_id WHERE t.tid=7[/sql]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"xml":{"id":"17","title":"XML Code","desc":"Allows you to enter formatted/syntax-highlighted XML code","tag":"xml","useoption":"0","example":"[xml]4 Replies - 65 Views - Last Post: Yesterday, 09:46 PM
#1
Reputation: 0
- Posts: 2
- Joined: Yesterday, 08:26 PM
Posted Yesterday, 08:32 PM
this is my coding...for this coding my result should be 6 iteration only...
im not very sure whether my answer in rad or deg...
ples someone help me...
#include<stdio.h> #include<math.h> #include<stdlib.h> #define true 1; #define false 0; main() { int i,m,OK,it; double c,d,TOL,fx[100],dfx[100],a[100],x[100]; x[0]=2.3,i=0; TOL=(pow(10,-32)); m=2; fx[0]=pow((pow(sin(x[0]),2)-pow(x[0],2)+1),2); d=fabs(fx[0]); printf("%d %.12e %.12e\n",i,x[0],d); OK=false; it=0; i=0; while(!OK) { it=it+1; fx[i]=pow((pow(sin(x[i]),2)-pow(x[i],2)+1),2); dfx[i]=2*(pow(sin(x[i]),2)-pow(x[i],2)+1)*(2*sin(x[i])*cos(x[i])-2*x[i]); x[i+1]=x[i]-(m*(fx[i]/dfx[i])); fx[i+1]=pow((pow(sin(x[i+1]),2)-pow(x[i+1],2)+1),2); c=fabs(fx[i+1]); printf("%d %.12e %.12e\n",i+1,x[i+1],c); if(c<TOL) OK=true; i=i+1; } }
This post has been edited by Skydiver: Yesterday, 08:42 PM
Is This A Good Question/Topic? 0
Replies To: answer in deg and rad
#2
Reputation: 1739
- Posts: 5,170
- Joined: 05-May 12
Re: answer in deg and rad
Posted Yesterday, 08:54 PM
Try increasing your tolerance to 10-30 instead of 10-32.This post has been edited by Skydiver: Yesterday, 08:55 PM
#3
Reputation: 0
- Posts: 2
- Joined: Yesterday, 08:26 PM
Re: answer in deg and rad
Posted Yesterday, 09:25 PM
Skydiver, on 07 April 2013 - 08:54 PM, said:
Try increasing your tolerance to 10-30 instead of 10-32.
i cannot do that...
because it already fit in my project...
i want to observe the number of iteration with same TOL but different test function
#4
Reputation: 1739
- Posts: 5,170
- Joined: 05-May 12
Re: answer in deg and rad
Posted Yesterday, 09:38 PM
Well, base on the values of C, I don't see how you will ever get a value of c less than 10-32 in 6 iterations.Here's the output I'm seeing:
0 2.300000000000e+000 1.394218647024e+001 1 1.632475867168e+000 4.472626765749e-001 2 1.435079952458e+000 6.046710267708e-003 3 1.405195569536e+000 3.057005611515e-006 4 1.404492036112e+000 9.272594171137e-013 5 1.404491648215e+000 8.590695257857e-026 6 1.404491648215e+000 1.109335647967e-031 7 1.404491648215e+000 1.972152263053e-031 8 1.404491648215e+000 1.109335647967e-031 9 1.404491648215e+000 1.972152263053e-031 10 1.404491648215e+000 1.109335647967e-031 11 1.404491648215e+000 1.972152263053e-031 12 1.404491648215e+000 1.109335647967e-031 13 1.404491648215e+000 1.972152263053e-031 : until it overruns the buffers you declared.
How did you determine that 6 iterations was going to be sufficient?
This post has been edited by Skydiver: Yesterday, 09:43 PM
#5
Reputation: 1739
- Posts: 5,170
- Joined: 05-May 12
Re: answer in deg and rad
Posted Yesterday, 09:46 PM
Perhaps use GMP or MPIR as your number and math library instead of the standard C/C++ library to get more precision and perhaps get past the repetition that is happening above.
Page 1 of 1
Source: http://www.dreamincode.net/forums/topic/317934-answer-in-deg-and-rad/
earl scruggs wrestlemania 28 game of thrones season 2 dierks bentley kenny chesney academy of country music awards brad paisley
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.