Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4542724
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T15:25:53+00:00 2026-05-21T15:25:53+00:00

If I have the following code: var A = Array[Array[Double]]() // where A becomes

  • 0

If I have the following code:

var A = Array[Array[Double]]()    // where A becomes an MxP matrix
var B = Array[Array[Double]]()    // where B becomes an NxP matrix

What are some efficient ways to append one matrix to the other, resulting in a single matrix, as the following pseudocode would suggest?

val C = A append B    // where C is a (M+N)xP matrix

Obviously, one of the dimensions (in this case P) is held constant.

EDIT: So far, both of the provided solutions are growing in the second dimension. I am trying to hold the second dimension fixed.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-21T15:25:53+00:00Added an answer on May 21, 2026 at 3:25 pm

    Functional, but not as performant as the imperative alternative would be:

    scala> val a = Array.tabulate(2, 3)((_, _) => (math.random * 100).toInt)
    a: Array[Array[Int]] = Array(Array(52, 61, 58), Array(35, 69, 39))
    
    scala> val b = Array.tabulate(2, 4)((_, _) => (math.random * 100).toInt)
    b: Array[Array[Int]] = Array(Array(51, 54, 87, 10), Array(52, 76, 18, 85))
    
    scala> (a, b).zipped.map(_ ++ _)
    res0: Array[Array[Int]] = Array(Array(52, 61, 58, 51, 54, 87, 10), Array(35, 69, 39, 52, 76, 18, 85))
    

    (In reply to the comment…)

    Holding the second dimension fixed:

    scala> val x = Array.tabulate(3, 2)((_, _) => (math.random * 100).toInt)
    x: Array[Array[Int]] = Array(Array(13, 26), Array(96, 6), Array(68, 58))
    
    scala> val y = Array.tabulate(2, 2)((_, _) => (math.random * 100).toInt)
    y: Array[Array[Int]] = Array(Array(82, 5), Array(0, 76))
    
    scala> x ++ y
    res1: Array[Array[Int]] = Array(Array(13, 26), Array(96, 6), Array(68, 58), Array(82, 5), Array(0, 76))
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following code: var numberOfSelectedOptions = new Array(); numberOfSelectedOptions[0]=0; numberOfSelectedOptions[1]=0; numberOfSelectedOptions[2]=0; $(a.tagvariantoption).live(click,
I have the following code: var x = Array(1,3,4,4,1,1,3) var m = Int.MaxValue x.foreach((x)=>(m
I have the following code: var tempIdx = document.getElementById('cityBuild').selectedIndex; var tempBuilding = document.getElementById('cityBuild').options[tempIdx].value; //
How do I access user preferences in Firefox? I have the following code: var
I have the following code in my controller: public ActionResult Details(int id) { var
I have code similar to the following in many places: var dbParams = db.ReadParams(memberID,
I have the following JS: http://monobin.com/__m1c171c4e and the following code: Code: var tpl =
I Have following code: Controller: public ActionResult Step1() { return View(); } [AcceptVerbs(HttpVerbs.Post)] public
I have following Code Block Which I tried to optimize in the Optimized section
I'm trying to use opengl in C#. I have following code which fails with

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.