How to properly assigned to a variable vector of the cell?
2 次查看(过去 30 天)
显示 更早的评论
Dear all,
I have variable xx and cell (velky). I want to choose one vector velky {2,a} (for example velky{2,1})of this cell and assigned to a variable xx. I try to do this, but withnout succes.
This is my code:
load ('testovaci_modely_velke_skvrny')
load ('net')
prompt = {'Napište číslo testovacího modelu:','z'};
dlg_title = 'Vytvoření vlastního testovacího modelu';
num_lines = 1;
x = inputdlg('Napište číslo testovacího modelu:','Vytvoření vlastního testovacího modelu', [1 100]);
a = x{1,1};
disp('Zadali jste správné číslo.')
xx = velky{2,a};
% Y = sim(net,P);
imdl= mk_common_model('a2c0',16);
img_1 = mk_image(imdl);
img_input = img_1;
img_input.elem_data = xx;
figure
show_fem(img_input);
title('Testovací model')
Does anyone have any idea? Thank you for your answers.
0 个评论
回答(2 个)
Image Analyst
2015-3-12
What does this show, after you get x and a:
whos x
x
whos a
a
4 个评论
Image Analyst
2015-3-13
can you upload the mat file, and change the prompts to English and I'll try to run your exact code?
Veronika
2015-3-13
2 个评论
Image Analyst
2015-3-13
Error using load
Unable to read file 'testovaci_modely_velke_skvrny'.
No such file or directory.
Error in test1 (line 1)
load ('testovaci_modely_velke_skvrny')
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Migrate GUIDE Apps 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!