How to use semiology using data given in .txt form
Mostra commenti meno recenti
I put the command
HbData=dlmread('HbSpectra.txt');
into the script but I dont know how to proceed from there with the semilogy

Risposte (1)
Walter Roberson
il 7 Apr 2022
Independent_Variable = HbData(:,1);
First_Dependent_Variable = HbData(:,2);
First_Marker = 'o';
semilogy(Independent_Variable, First_Dependent_Variable, First_Marker)
You should be able to proceed from there.
Categorie
Scopri di più su Installing Products in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!