no swear 192 / 166 / 82 Регистрация: 01.07.2016 Сообщений: 942 |
||||
1 |
||||
08.04.2020, 00:20. Показов 3985. Ответов 3 Метки нет (Все метки)
Что такое -nan(ind) и как это исправить?
Начиная с E = 106 и V = 1 появляется -nan(ind) а потом исчезает и опять по кругу.
0 |
Programming Эксперт 94731 / 64177 / 26122 Регистрация: 12.04.2006 Сообщений: 116,782 |
08.04.2020, 00:20 |
Ответы с готовыми решениями: Ошибка -nan(ind) и nan -nan(ind) Ошибка -nan<ind> Ошибка nan(ind) #include… 3 |
Заклинатель змей 611 / 508 / 213 Регистрация: 30.04.2016 Сообщений: 2,412 |
|
08.04.2020, 00:35 |
2 |
Сообщение было отмечено no swear как решение Решениеno swear, я конечно сто лет не писал не крестах, но зачем pow велосипед, если есть powl()?
1 |
Вездепух 10436 / 5705 / 1553 Регистрация: 18.10.2014 Сообщений: 14,101 |
|
08.04.2020, 00:53 |
3 |
Сообщение было отмечено no swear как решение Решение
Начиная с E = 106 и V = 1 появляется -nan(ind) а потом исчезает и опять по кругу. Так а что вы ожидали произойдет, когда вы начнете вычислять такие гигантские степени, которые не помещаются в диапазон вашего плавающего типа? 800 в 107 степени — это уже чересчур, учитывая, что вы, очевидно, запускаете код в реализации, в которой В реализации с 80-битным
1 |
192 / 166 / 82 Регистрация: 01.07.2016 Сообщений: 942 |
|
08.04.2020, 01:33 [ТС] |
4 |
я конечно сто лет не писал не крестах, но зачем pow велосипед, если есть powl()? Та это просто для себя написал так powl тоже можно использовать конечно. TheCalligrapher, Как я раньше не заметил что переполнение может произойти. Спасибо за ответы.
0 |
IT_Exp Эксперт 87844 / 49110 / 22898 Регистрация: 17.06.2006 Сообщений: 92,604 |
08.04.2020, 01:33 |
Помогаю со студенческими работами здесь Ошибка -nan (ind) Выдаёт -nan(ind) Ошибка -nan(ind) #include <iostream> Почему выдает -nan(ind) using namespace std; int main() { Программа выводит nan ind Выводит: Что значит -nan(ind)? Искать еще темы с ответами Или воспользуйтесь поиском по форуму: 4 |
- Forum
- Beginners
- -nan(ind)?
-nan(ind)?
So I’m writing a program that demonstrates Newton’s method to find a root of an equation. It outputs the estimated value of the root, the the true error and empirical error. After trying to run the program, the true error and estimated error were outputting «-nan(ind)». I stepped through my program and found out that the original function for Newton’s method was returning this «-nan(ind)». What is «-nan(ind)» and how do I avoid it in this program?
|
|
NaN is «not a number», possibly resulting from some mathematical faux pas like dividing by 0, or using something undefined. Difficult to tell without full code.
You appear to be implementing the bisection method, not the Newton(-Raphson) method for root-finding. I would expect to see the latter involving a function and its derivative, not your «empirical error».
Can we see your equation( ) function, please: the function whose root you are trying to find.
Also note that your newton function won’t know what to return if equation(cval) is exactly equal to 0 — which, of course, is the root you are seeking.
Is there any reason you are using recursion rather than the more straightforward iteration?
Last edited on
|
|
Here’s the code for the equation and it’s first derivative. I’m using recursion even though it’s less straightforward because I honestly need more practice in recursion and this gave me a great excuse to try it.
I also tried implementing a condition for equation == 0, but the same problem is still happening
Your original routine newton( ) — your original post — does not return ANYTHING unless count = 20.
To remedy this, simply insert
return estroot;
at the end of this function (between lines 23 and 24 in your original post).
When I checked it, your program then worked.
There are multiple potential problems with your approach.
— Just change your original line 19 to plain
else
Then at least one option will be followed.
— Your method is BISECTION and not NEWTON-RAPHSON (aka Newton’s method).
— It would be far better done by iteration than recursion.
— You don’t check that your original aval and bval actually span the root.
— dividing by the derivative in line 39 will fail for many functions (e.g. y = (x-2)cubed), where the root also has zero slope.
Topic archived. No new replies allowed.
- Remove From My Forums
-
Question
-
So I’m writing a code to solve for the two angles and missing side of a right triangle. The code has no errors and solves for my side («c») perfectly. However for the angles it prints out -nan(ind). I have been in this class for a total of maybe
5 class meetings so i don’t know what is going on or how to fix it. So if anyone can plainly explain the issue as though i have no clue what any of the C++ terminology actually is. lol! thank you. Any help is great otherwise just don’t.Here is the code:
#include <iostream>;
#include <cmath>;
using namespace std;
int main()
{
long double a, b, c, A, A1, B1, B, tot1, tot2, tot3;
char done, an;
cout << «input value of a n»;
cin >> a;
cout << «input value of b n»;
cin >> b;
tot1 = a*a + b*b;
c = sqrt(tot1);
cout << «c=» << c <<«n»;
tot2 = (b*b + c*c — a*a) / 2 * b*c;
A1 = acos(tot2);
A = A1 * 180 / 3.14;
cout << A << «n»;
cin >> done;
tot3 = (a*a + c*c — b*b) / 2 * a*c;
B1 = acos(tot3);
B = B1 * 180 / 3.14;
cout << B << «n»;
cin >> done;
cout << «C is equal to 90 degrees n «;
system(«pause»);
return 0;};
Answers
-
tot2 = (b*b + c*c — a*a) / 2 * b*c;
A1 = acos(tot2);Your formula for tot2 is incorrect. You are missing a set of parentheses around the divisor.
-
Proposed as answer by
Monday, February 15, 2016 9:21 AM
-
Marked as answer by
May Wang — MSFT
Wednesday, February 17, 2016 8:16 AM
-
Proposed as answer by
-
Hi,
I had test the code, we can reproduce the issue. In order to solve issue. you should do it :
tot2 = ((b*b + c*c — a*a) /( 2 * b*c));
Best Regards,
Hart
-
Proposed as answer by
Hart Wang
Monday, February 15, 2016 9:21 AM -
Marked as answer by
May Wang — MSFT
Wednesday, February 17, 2016 8:16 AM
-
Proposed as answer by