How to write a text in INPUTDLG without a field?
2 次查看(过去 30 天)
显示 更早的评论
I was trying to create an input dialog box for gathering the co-ordinates of two nodes, A & B.
Is it possible to have a text that just says Node A, without any entry field next to it. It should be followed by three fields x,y,z and then another text saying Node B, followed again by the x,y,z fields.
Something like this:
Node A
x: ___
y: ___
z: ___
Node B
x: ___
y: ___
z: ___
0 个评论
采纳的回答
Star Strider
2020-6-11
That does not appear to be an option.
Try this:
prompt = {'Node A: x:', 'Node A: y:', 'Node A: z:', 'Node B: x:', 'Node B: y:', 'Node B: z:'};
v = inputdlg(prompt, 'Nodes', [1 35]);
.
2 个评论
Star Strider
2020-6-11
As always, my pleasure!
You might be able to do what you want with GUIDE or App Designer (that I would not be able to help you with because I very rarely use them).
更多回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Startup and Shutdown 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!