how use MATLAB to data generation
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
dodo shu
am 13 Sep. 2019
Beantwortet: Cam Salzberger
am 13 Sep. 2019
Is it possible to use MATLAB to generate a set of data with the corresponding relation of y=sin(x), and then import it into excel?
0 Kommentare
Akzeptierte Antwort
Cam Salzberger
am 13 Sep. 2019
Hello Dodo,
Yes, if you are looking to evaluate the sine function at particular points, then export that data to an Excel spreadsheet, you can do all that in MATLAB. For a very basic example:
x = linspace(0, 2*pi, 100);
y = sin(x);
writematrix(y, "MyExcelFile.xlsx")
If you have an older verison of MATLAB, you may want to use xlswrite instead of writematrix. You can modify the input datapoints to the sine function by changing how you define x, and even do degrees as units if you use "sind" instead of "sin". You can also modify where and how the data is written to the Excel file by adding options to writematrix.
-Cam
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Data Import from MATLAB finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!