Copying data from variable to script
26 views (last 30 days)
Show older comments
Jeffrey
on 4 Dec 2025 at 21:57
I just upgraded from version 2018b to R2025B. I used to be able to select data in variable window and right click and select copy. I could then paste this data to a variable assignment in a matlab script and it would format correctly
e.g.
CalIndex=[40,123;159,255;364,468;522,671;732,897;907,993;1000,1220;1242,1335;1473,1534]
It appears that the right click does not show copy option and if I use ctrl-c and then ctrl-v in the matlab script it paste the data as unformatted table
1 123
206 255
398 468
522 671
732 897
907 993
1000 1220
1242 1335
1473 1534
This was a handy way to modify a variable assignment without having to type in the assigment by hand.
1 Comment
Matt J
on 5 Dec 2025 at 13:23
Edited: Matt J
on 5 Dec 2025 at 13:34
The reason for the change, I imagine, is that maybe you don't want the data pasted into the same kind of container as the one it came from. Maybe you want it to copy from a matrix to a cell array, as in,
CalIndex={40,123;159,255;364,468;522,671;732,897;907,993;1000,1220;1242,1335;1473,1534}
Or maybe you want to paste numeric data from a table into a matrix.
With the old behavior, you would be forced to remove the default container delimiters manually.
Accepted Answer
Walter Roberson
on 4 Dec 2025 at 22:48
Moved: Matt J
on 4 Dec 2025 at 23:56
If you type in
CalIndex = []
and then paste in the N x 2 table between the [ and the ] then everything will work out.
More Answers (0)
See Also
Categories
Find more on Matrix Indexing 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!