How do I change a variable in my workspace?
Show older comments
I am trying to change a matrix located in my workspace. It is originally a 1 x 48 matrix and I am just wondering how to edit the dimensions of the matrix. Thank you!
Attached below is my code:
data = textscan(fileID, '%f%f%f%f%f%f','HeaderLines',6,'CollectOutput','');
fclose(fileID);
X = data{1};
Accepted Answer
More Answers (1)
Steven Lord
on 10 Jul 2018
0 votes
If you want to change the shape of the array without changing the number of elements, take a look at the reshape function.
If you want to change the number of elements in the array, you'll probably want to use the repmat or repelem functions or the operations of indexing or concatenation.
Categories
Find more on Creating and Concatenating Matrices in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!