double[][] skalar_m_2d(double[][] arr, double skalar)
{
import std.algorithm;
// return arr.map(a=> a[] *= skalar).array;
arr.each!((ref a) => a[] *= skalar));
return arr;
}- confused with data types thorstein via Digitalmars-d-learn
- Re: confused with data types JN via Digitalmars-d-learn
- Re: confused with data types Adam D. Ruppe via Digitalmars-d-learn
- Re: confused with data type... arturg via Digitalmars-d-learn
- Re: confused with data ... thorstein via Digitalmars-d-learn
- Re: confused with d... thorstein via Digitalmars-d-learn
- Re: confused w... arturg via Digitalmars-d-learn
- Re: confus... thorstein via Digitalmars-d-learn
