Info
Questa domanda è chiusa. Riaprila per modificarla o per rispondere.
variables problem , infinite loop
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
when I push ctrl+c , I see id1 and id2.
id1 0.513709476164662
id2 0.513709476164661
if they are equal ,the loop will end how can delete last numbers after comma
0 Commenti
Risposte (2)
Azzi Abdelmalek
il 1 Nov 2013
format long
id1=0.513709476164662
id2=0.513709476164661
id1=str2num(sprintf('%.14f',id1))
id2=str2num(sprintf('%.14f',id2))
id1==id2
0 Commenti
Questa domanda è chiusa.
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!