This repository has been archived by the owner on Sep 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTCompl.cpp
362 lines (314 loc) · 5.46 KB
/
TCompl.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
#include "TCompl.h"
std::istream& operator>>(std::istream& in, TCompl& c)
{
char operation = '\n';
std::string input;
// Read the input into a string buffer, handling spaces or newlines
std::getline(in >> std::ws, input);
std::istringstream iss(input);
if (iss.peek() == '-')
{
iss >> operation;
if (iss.peek() == 'i')
{
iss.ignore();
c.Re = 0;
c.Im = -1;
return in;
}
}
else if (iss.peek() == 'i')
{
iss.ignore();
c.Re = 0;
c.Im = 1;
return in;
}
iss >> c.Re;
if (operation == '-')
{
c.Re = -c.Re;
}
if (iss.peek() == 'i')
{
iss.ignore();
c.Im = c.Re;
c.Re = 0;
return in;
}
iss >> std::ws; // Skip leading whitespace
if (iss.peek() == '+' || iss.peek() == '-')
{
iss >> operation;
iss.ignore();
if (iss.peek() == 'i')
{
iss.ignore();
if (operation == '-')
{
c.Im = -1;
}
else
{
c.Im = 1;
}
}
else
{
//iss.putback(operation);
iss >> c.Im;
if (operation == '-')
{
c.Im = -c.Im;
}
}
}
else
{
c.Im = 0;
}
// Clear any error flags that may have been set on the stream
in.clear();
return in;
}
std::ostream& operator <<(std::ostream& in, TCompl& c)
{
char operation;
if (c.Im > 0 && c.Im != 1 && c.Im != -1 && c.Re != 0)
{
operation = '+';
std::cout << c.Re << ' ' << operation << ' ' << c.Im << 'i';
}
else if (c.Im < 0 && c.Im != 1 && c.Im != -1 && c.Re != 0)
{
operation = '-';
std::cout << c.Re << ' ' << operation << ' ' << (c.Im * (-1)) << 'i';
}
else if (c.Im == 1 && c.Re != 0)
{
operation = '+';
std::cout << c.Re << ' ' << operation << ' ' << 'i';
}
else if (c.Im == -1 && c.Re != 0)
{
operation = '-';
std::cout << c.Re << ' ' << operation << ' ' << 'i';
}
else if (c.Im == 0)
{
std::cout << c.Re;
return in;
}
else if (c.Re == 0 && c.Im != 1 && c.Im != -1)
{
std::cout << c.Im << 'i';
}
else if (c.Re == 0 && c.Im == 1)
{
std::cout << 'i';
}
else if (c.Re == 0 && c.Im == -1)
{
std::cout << "-i";
}
return in;
}
TCompl::TCompl()
{
Re = 0;
Im = 0;
#ifdef SEE_CONSTRUCTORS
std::cout << "Default constructor invoked" << std::endl;
#endif
}
TCompl::TCompl(double re, double im)
{
Re = re;
Im = im;
#ifdef SEE_CONSTRUCTORS
std::cout << "2 parameters constructor invoked" << std::endl;
#endif
}
TCompl::TCompl(double re)
{
Re = re;
Im = 0;
#ifdef SEE_CONSTRUCTORS
std::cout << "1 parameter constructor invoked" << std::endl;
#endif
}
TCompl::TCompl(const TCompl& op2)
{
Re = op2.Re;
Im = op2.Im;
#ifdef SEE_CONSTRUCTORS
std::cout << "Copy constructor invoked" << std::endl;
#endif
}
TCompl::~TCompl()
{
#ifdef SEE_CONSTRUCTORS
std::cout << "Destructor invoked" << std::endl;
#endif
}
/*
double TCompl::GetRe() const
{
return Re;
}
double TCompl::GetIm() const
{
return Im;
}*/
bool TCompl::operator ==(const TCompl& op2)
{
return ((Re == op2.Re) && (Im == op2.Im));
}
bool TCompl::operator !=(const TCompl& op2)
{
return !((Re == op2.Re) && (Im == op2.Im));
}
TCompl& TCompl::operator =(const TCompl& op2)
{
if (*this != op2)
{
Re = op2.Re;
Im = op2.Im;
}
return *this;
}
TCompl& TCompl::operator +=(const TCompl& op2)
{
Re += op2.Re;
Im += op2.Im;
return *this;
}
TCompl& TCompl::operator -=(const TCompl& op2)
{
Re -= op2.Re;
Im -= op2.Im;
return *this;
}
TCompl& TCompl::operator *=(const TCompl& op2)
{
*this = *this * op2;
return *this;
}
TCompl& TCompl::operator /=(const TCompl& op2)
{
*this = *this / op2;
return *this;
}
TCompl TCompl::operator +(const TCompl& op2)
{
TCompl res;
res.Re = Re + op2.Re;
res.Im = Im + op2.Im;
return res;
}
TCompl TCompl::operator -(const TCompl& op2)
{
TCompl res;
res.Re = Re - op2.Re;
res.Im = Im - op2.Im;
return res;
}
TCompl TCompl::operator *(const TCompl& op2) //Check
{
TCompl res;
res.Re = Re * op2.Re - Im * op2.Im;
res.Im = Re * op2.Im + Im * op2.Re;
return res;
}
TCompl TCompl::operator /(const TCompl& op2)
{
TCompl res;
try
{
if ((op2.Re * op2.Re + op2.Im * op2.Im) == 0)
{
throw std::invalid_argument("Error. Division by zero. \n");
}
else
{
res.Re = (Re * op2.Re + Im * op2.Im) / (op2.Re * op2.Re + op2.Im * op2.Im);
res.Im = (Im * op2.Re - Re * op2.Im) / (op2.Re * op2.Re + op2.Im * op2.Im);
}
}
catch (const std::exception& e)
{
//std::cout << e.what() << std::endl;
}
return res;
}
TCompl TCompl::operator ^(const int power)
{
TCompl res(0, 0);
double r, angle;
bool need_calculations = 1;
r = sqrt(Re * Re + Im * Im);
if (Re == 0 && Im == 0 && power != 0)
{
res = 0;
need_calculations = 0;
}
else if (Re == 0 && Im == 0 && power == 0)
{
std::cout << "\n Error: 0 in power 0, undefined result.\n";
res = 0;
need_calculations = 0;
}
else if (power == 0)
{
res = 1;
need_calculations = 0;
}
else if (Re != 0)
{
angle = atan(Im / Re);
if (((Im / Re) > 0) && Im < 0) //3-rd quarter
{
angle += PI;
}
else if (((Im / Re) < 0) && Im < 0) //4-th quarter
{
angle += PI;
}
}
else if (Im != 0 && Re == 0)
{
if (Im > 0)
{
angle = asin(1);
}
else if (Im < 0)
{
angle = asin(-1);
}
}
if (need_calculations)
{
angle = angle * power;
res.Re = pow(r, power) * cos(angle);
res.Im = pow(r, power) * sin(angle);
}
return res;
}
/*
//void TCompl::Set(double re, double im)
{
//Re = re;
//Im = im;
}*/
int TCompl::ConvertToInt()
{
int op_int;
if (Im == 0 && (abs(round(Re) - Re) < std::numeric_limits<double>::epsilon()))
{
op_int = static_cast<int>(round(Re));
}
else
{
throw std::invalid_argument("Complex number is not convertible to int.");
}
}