just a command about fprint
17 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
how can I use fprint?
6 Commenti
Stephen23
il 19 Apr 2017
Modificato: Stephen23
il 19 Apr 2017
"I have to solve this problem with fprintf,sprintf"
That's great! Go for it! If you have any specific questions, please ask us. You already listed some functions that you need to use, so you will have no problems locating their documentation using your favorite internet search engine, trying their examples, and attempting to solve this yourself. Good luck and have fun!
Risposta accettata
jJnte
il 19 Apr 2017
Modificato: jJnte
il 19 Apr 2017
I suggest you try and practice instead of going to forums directly. Play around with this code a bit and get familiar with it and really try to understand how and why it works.
ang = pi*rand(1,20);
A = 1; B = 1; % Choose A and B
y = A.*cos(ang)./(B.*sin(ang));
z = [ang; y];
fid = fopen('yournamesurname.txt', 'wt');
fprintf(fid, '%f\t\t%f\n', z);
fclose(fid);
1 Commento
Stephen23
il 19 Apr 2017
And remember these two things:
- this is a public forum, so your tutor/professor can read this as well.
- submitting someone else's work as your own is called plagiarism.
Più risposte (1)
jJnte
il 19 Apr 2017
You know, you shouldn't edit your whole thread for a new question...
My advice to you is to use the help command. Example:
>> help fprintf
And with this I bid you farewell
0 Commenti
Vedere anche
Categorie
Scopri di più su Matrix Indexing 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!