How to square roots all items in valarray with C++

1 Answer

0 votes
#include <iostream>
#include <valarray>

using std::cout;
using std::endl;
using std::valarray;

void print(valarray<double> va)
{
	for (double i = 0; i < va.size(); i++)
		cout << va[i] << " ";
	cout << endl;
}

int main()
{
	valarray<double> va = { 421, 22, 993, 34, 55, 98, 1 };
	
	va = sqrt(va);

	print(va);

	return 0;
}


/*
run:

20.5183 4.69042 31.5119 5.83095 7.4162 9.89949 1

*/

 



answered May 16, 2018 by avibootz

Related questions

1 answer 137 views
1 answer 136 views
136 views asked May 15, 2018 by avibootz
1 answer 191 views
1 answer 172 views
172 views asked Jun 14, 2020 by avibootz
1 answer 126 views
126 views asked May 16, 2018 by avibootz
6 answers 714 views
714 views asked May 15, 2018 by avibootz
2 answers 194 views
...