How to dynamically name variables based on a list and assign arrays from a cell array

조회 수: 2 (최근 30일)
Hi, I have two elements I would like to combine:
A 1x5 Cell Array called Input with the variables names I want to use:
Input ={'Type','Characteristics','PortfolioMKV','PortfolioRet','StartDate'}
And a 1x5 Cell Array called AllRanges with the data I want to assign to the variable names above:
AllRanges = 'RB' { 4x54 cell} { 2x39 cell} { 2x39 cell} '7/31/2013'
So, I want to dynamically create/ assign the following:
Type = 'RB' Characteristics = { 4x54 cell} PortfolioMKV = { 2x39 cell} PortfolioRet = { 2x39 cell} StartDate = '7/31/2013'
Any idea how I can achieve this? Thanks
  댓글 수: 1
Matt J
Matt J 2013년 9월 22일
편집: Matt J 2013년 9월 22일
Once you've dynamically created these variables, won't you also need a dynamic way of accessing/manipulating them later? How were you planning to do that? Was that going to be a follow-up question?

댓글을 달려면 로그인하십시오.

답변 (2개)

Azzi Abdelmalek
Azzi Abdelmalek 2013년 9월 22일

Image Analyst
Image Analyst 2013년 9월 22일
  댓글 수: 4
Image Analyst
Image Analyst 2013년 9월 22일
No, not unless you hard code the names in there or go against the recommendations laid out in the FAQ.
Jan
Jan 2013년 9월 22일
@Sven: Please read the linked FAQ topic again until it gets clear to you. Do not create variables dynamically. This produces more troubles than it solves.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Variables에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by