May I know what is wrong with the program as it is not showing any output?
Mostra commenti meno recenti
This program is regarding variation of threshold voltage with lateral straggle, and am just geting a empty graph. Please help me as i am having my 1st PROJECT REVIEW
5 Commenti
Wayne King
il 8 Dic 2013
How are we supposed to answer this question?
ARTI
il 9 Dic 2013
Walter Roberson
il 9 Dic 2013
The attachment did not make it.
ARTI
il 9 Dic 2013
Risposte (1)
Walter Roberson
il 9 Dic 2013
Your plot is not empty: you just cannot pick out the data it plots. You can emphasize the data by changing the color and marker:
plot(lateralstraggle,Vth, 'ro-')
6 Commenti
Walter Roberson
il 9 Dic 2013
Red circle. You should see exactly one of them, in roughly the middle of the plot. You only have one point to plot.
Image Analyst
il 9 Dic 2013
Or try it like this to make it super obvious:
plot(lateralstraggle,Vth, 'r*', 'MarkerSize', 15, 'LineWidth', 3)
Walter Roberson
il 11 Dic 2013
Modificato: Walter Roberson
il 11 Dic 2013
Your current code has lateralstraggle=2*10^-9 so should we assume that the unit is meters, and thus that 5 nm would correspond to 5*10^(-9) ? What increment are you hoping for? Why, later in the code, do you set lateralstraggle=7 (i.e., 7 meters) ?
Walter Roberson
il 11 Dic 2013
Please re-check your Nsdx . As one subexpression of it you have
exp((-(Lg-x)/2*lateralstraggle^2)
but everywhere else that the subexpression 2*lateralstraggle^2 appears, it is always bracketed into a single unit, (2*lateralstraggle^2) . Are you sure that everywhere else you want to be dividing by the whole product, but in that one sub-expression you want to be dividing by only 2, and multiplying the result by latteralstraggle^2 ?
Categorie
Scopri di più su MATLAB 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!