select a specific element of each matrix in a string

1 view (last 30 days)
Hi,
this is my code
K=rand(448);
for i=1:448
g{i}=[0:1:447]';
end
for i=1:448
U{i}=inv(K)*g{i};
end
so U contain 448 element containing 448*1 in each matrix. Now I want to use element(1,1) of each matrix. what should I do?
  1 Comment
Codeshadow
Codeshadow on 1 Jun 2020
One way to go about it would be as below:
tmp = [U{1,:}]; % Places all the data from the cell array into a 448*448 matrix.
Solution = tmp(1,:); % Gets the first element of each U.
clear tmp
Hope that helps!

Sign in to comment.

Accepted Answer

the cyclist
the cyclist on 1 Jun 2020
Edited: the cyclist on 1 Jun 2020
firstElementOfEachCellOfU = cellfun(@(x)x(1,1),U);
  2 Comments
talayeh tavangar
talayeh tavangar on 1 Jun 2020
thank you very much. Now, I have 2 matrix of 1*448 I want to plot them as U for X axis and K as Y axis how can I do that?
the cyclist
the cyclist on 1 Jun 2020
Since this particular question has been answered, I suggest you ask this in a new question (and upvote and/or accept useful answers that you have been receiving on prior questions).

Sign in to comment.

More Answers (0)

Categories

Find more on Shifting and Sorting 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!