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 3315830
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T22:23:49+00:00 2026-05-17T22:23:49+00:00

I have huge data matrices stored in a MATLAB M-file and I will explain

  • 0

I have huge data matrices stored in a MATLAB M-file and I will explain

my problem by this sample example:

I have three constant matrices (every matrix has its own values and these

values are not changed, they are values for experiment results)

Every matrix always has 4 rows and 6 columns

The last column of the 1st matrix is a zero column

The 2nd matrix does not have any zero column

The last 2 columns of the 3rd matrix are zeros

Actually, I have other matrices but the above are only samples, meaning

that the next three matrices in my data do not have to be in the same sequence of the

above three matrices in case of having or not having zero columns. Another point is

the non zero columns are always at the last three or two or one column or there is no

zero column.

So, what I need from the above matrices is assigning three letters x, y and z OR

numbers 5, 6 and 7 to the nonzero columns only, starting from the 1st column of

matrix 1 continuing to the last column of the last matrix excluding the zero columns

meaning that: the above example results will be:

1st matrix:

Column 1: 5

Column 2: 6

Column 3: 7

Column 4: 5

Column 5: 6

Column 6: excluded and not numbered since it is a zero column

Then it does not reset the counting, but it continuous labeling and jumps to the

next matrix, so:

2nd matrix

Column 1: 7

Column 1: 5

.

.

.

.

And so on continuing to the last matrix.

I am using the following command that appears in the Matlab window:

K=input(‘Enter the matrix number: 1 OR 2 OR 3’)

Then, after entering the matrix number, the program asks the user to

enter the column number:

M=input(‘Enter the column number 1 OR 2 OR 3 OR 4 OR 5 OR 6’)

Then, the result will be a matrix of two columns:

1st column: the column elements for the number entered

2nd column: the assigned number 5 OR 6 OR 7 to this column and for sure it is

repeated through the column.

Sorry for this long question and also I tried to summarize and make it simple as I can.

I appreciate any help and thanks.


Can I ask a question continuing to the above one ?

If someone wants to represents the numbers by text, is it possible?

this means, for example:

5 : green

6 : blue

7 : red

and then, continue as above analysis.Only, replacing the numbers by these words

so, the results in the 2nd column will be words other than numbers.

Sorry for putting my question in an answer box, but I couldn’t comment

to this question..

  • 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-17T22:23:50+00:00Added an answer on May 17, 2026 at 10:23 pm

    I hope you keep all your matrices in one variable. It will allow you not to repeat the same commands for different matrices or to use eval.

    Let’s say you have 3 matrices:

    % sample data
    A1 = horzcat(rand(4,5),zeros(4,1));
    A2 = rand(4,6);
    A3 = horzcat(rand(4,4),zeros(4,2));
    

    You can combine them as a cell array:

    A = {A1,A2,A3};
    

    or 3D array (since all matrices have the same size):

    A = cat(3,A1,A2,A3);
    

    Create combined matrix B with 4 rows and (6+6+6) columns

    % combined matrix for cell array
    B = cell2mat(A);
    
    % or for 3D array
    B = reshape(A,4,[]);
    

    Then you can use the following code to repopulate B with 5 6 and 7:

    % repopulate B with 5, 6, 7
    zerocolumns = all(B==0,1); % index of columns with all zeros
    vec567 = repmat(5:7,1,ceil(sum(~zerocolumns)/3)); % vector 5 6 7 5 6 7 ...
    B(:,~zerocolumns) = repmat(vec567(1:sum(~zerocolumns)),size(B,1),1);
    

    Split B back to original matrices:

    % convert back to cell array
    C = mat2cell(B,[],4, [6 6 6]);
    
    % convert back to 3D array
    C = reshape(B,4,6,[]);
    

    Finally you can get 2-column output as

    % cell arrays
    result = [A{K}(:,M) C{K}(:,M)];
    
    % 3D arrays
    result = [A(:,M,K) C(:,M,K)];
    

    If you don’t need to repopulate original matrices you can get the result earlier:

    % cell arrays
    result = [A{K}(:,M) B(:,(K-1)*6+M)];
    
    % 3D arrays
    result = [A(:,M,K) B(:,(K-1)*6+M)];
    

    Hope I didn’t make a mistake somewhere.

    It probably can be solved without creating combined matrix. But your matrices are small and there should not be any memory or performance related problems.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a huge (400MB) initial_data.json file. Django's eating up all my memory trying
Good day... I have huge trouble with this and it drives me insane. My
I have to deal with a huge amount of data that usually doesn't fit
am exporting huge data to excel using php. i change that to csv and
My requirement is to migrate data from MySQL to PostgreSQL. Is there any free
I have a List<> of objects containing two strings and a DateTime. I want
I am working on system where there are huge (2000-5000 records per minute) amount
I have one table that stores values with a point in time: CREATE TABLE
I've been following Hadoop for a while, it seems like a great technology. The
I am developing an Application where I am submitting POST Requests to a .NET

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.