GUI Output

I have my gui which displays words selected from a group of words and phrases to form a sentence.However,when words are selected,they are stacked vertically instead of forming a sentence the normal way(words appearing from left to right).Any help will be appreciated.Thanks.

Antworten (2)

Matt Fig
Matt Fig am 23 Feb. 2011

0 Stimmen

What code are you using to display the sentence?
Matt Tearle
Matt Tearle am 23 Feb. 2011

0 Stimmen

As Matt Fig says, it would help to know what you're doing to get a vertical stack. Are you using char of a cell array of strings, perhaps?
Anyway, as a general approach, if you have a cell array of strings, one word per cell, something like this should do the job:
words = {'the';'quick';'brown';'fox';'etc'}
s = sprintf('%s ',words{:});
set(uitextbox,'string',s)

Kategorien

Mehr zu Characters and Strings finden Sie in Hilfe-Center und File Exchange

Tags

Gefragt:

am 23 Feb. 2011

Community Treasure Hunt

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

Start Hunting!

Translated by