Clear Filters
Clear Filters

converting cell to struct with fields

2 views (last 30 days)
Hi, i have 2 cell arrays that i want to convert to structure with fields. The first cell is A (10×1 cell array)
DeliArg= {[-30]}
{[-25]}
{[-20]}
{[-15]}
{[-10]}
{[ -5]}
{[ 0]}
{[ 5]}
{[ 10]}
{[ 15]}
the second cell is
AlgTry = Columns 1 through 12
{[-10]} {[-5]} {[0]} {[5]} {[10]} {[13]} {[15]} {[20]} {[25]} {[30]} {[35]} {[40]}
Columns 13 through 14
{[45]} {[50]}
Now i want to represent the data in the format below as struct with fields
DeliArg : [-25 -20 -15 -10 -5 0 5 10 15]
AlgTry: [-10 -5 0 5 10 13 15 20 25 30 35 40 45 50]
Please help.

Accepted Answer

Ameer Hamza
Ameer Hamza on 27 May 2020
Something like this
S.DeliArg = [DeliArg{:}];
S.AlgTry = [AlgTry{:}];

More Answers (0)

Categories

Find more on Structures in Help Center and File Exchange

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!