How can I get my table to display a value instead of a symbol?
Mostrar comentarios más antiguos
Hi all,
I have a table of different analysis methods and I'm trying to output the results in a table.
I have the confidence bands for one method done and stored the mean of the upper and lower limits (mean over 1000 samples so just a single number) as a variable. In my table, I call to display that single 8 byte value and instead, if shows a weird symbol that looks like half of a ceiling symbol. When I check that I wrote the table correctly and that the value I called in the table are correct and the value is a single number, it checks out. But the table won't display it? I attached what the table looks like as a JPG. Here is the code for the table:
True = [betaTrueW,betaTrueW,betaTrueW];
RowNames = {'Beta MLE','Beta Median Rank Regression 1 (y on x)','Beta Median Rank Regression 2 (x on y)'};
Mean = [betaMLEmeanC, betaMRmeanC, betaMR2meanC];
Low = [blMLEC, '-','-'];
Up = [buMLEC, '-','-'];
SD = [betaMLEsdC, betaMRsdC, betaMR2sdC];
Bias = [betaMLEbiasC, betaMRbiasC, betaMR2biasC];
MSE = [betaMLEmseC, betaMRmseC, betaMR2mseC];
T3C = table;
T3C.Estimator_Method_Option_C = RowNames';
T3C.TrueBeta = True';
T3C.Mean = Mean';
T3C.Confidence_Low = Low';
T3C.Confidence_Up = Up';
T3C.SD = SD';
T3C.Bias = Bias';
T3C.MSE = MSE';
and blMLEC = 1.5945 and buMLEC = 2.4565.
Any thoughts?
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Tables en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!