i can put image
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
i write script like this.
e=input('enter the name = ') b=imread('e'); image(b);
and i input a.jpg . why error ? thx
0 Commenti
Risposta accettata
Paulo Silva
il 2 Mar 2011
e=input('enter the name = ','s')
b=imread(e);
image(b);
You were using input to save numeric data to e and instead of the value inside e you were saying to imread to open the letter e like this 'e'.
0 Commenti
Più risposte (1)
Vedere anche
Categorie
Scopri di più su Migrate GUIDE Apps in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!