回答済み Display part of a legend
you can set the legend property 'AutoUpdate' to 'off' before you create the objects you dont want to see
約5年 前 | 0
回答済み How to add an eguation into my plot?
you can use the annotation command. e.g.
annotation('textbox',[0.1 0.1 0.1 0.1],'String','hello $\frac{2}{4} \alpha$ ','FitBoxT...
回答済み 2 Factor Anova with Repetitions
i would use anovan(data,{factor1,factor2}), it's in my opinion a bit easier to handle. data is a column vector of length N, fact...
回答済み Nothing shows up on plot?
your plot contains only one data point because days is 1 x 1 and MM is 1 x1. If you are interested the sequence of data you also...
約5年 前 | 0
回答済み How to add the level to a sine tone?
the level of a sound is usually the root mean square of the amplitude values. going on from there db SPL is calculated as 20*log...
回答済み Box Plot for Time (HH:MM:SS) data
i suggest to convert you time (Hour : Minute : Seconds) to seconds using
[~, ~, ~, H, MN, S]=datevec('14:35:22','HH:MM:SS');
M...