CodeGuy
CodeGuy

Reputation: 28907

Matlab matrix - edit

How can I edit a Matlab matrix stored as .mat in an excel-like user interface? I would like to find all instances of a particular value in a particular column and then eyeball it and edit it that way. Is there any nice way of editing matrices other than doing things like

matrix[4;3] = 4

The edited changes should be saved to the matrix for later use in matlab.

Upvotes: 0

Views: 231

Answers (1)

Franck Dernoncourt
Franck Dernoncourt

Reputation: 83157

Open MATLAB's variable editor by double clicking on the variable in the workspace or using openvar x (where x if the name of the variable you are interested in):

enter image description here

Alternatively it is possible to import a MAT file into an excel sheet directly by using one of the workarounds, but it's a bit tricky.

Upvotes: 1

Related Questions