How to use semiology using data given in .txt form

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)

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

Tag

Richiesto:

il 7 Apr 2022

Risposto:

il 7 Apr 2022

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by