代码搜索:Plot
找到约 10,000 项符合「Plot」的源代码
代码结果 10,000
www.eeworm.com/read/172476/9705849
m plot_tilt.m
function [Pdiff] = plot_tilt(rpcFile,pitFile,rolFile,rpc2File,pit2File,rol2File,rpc3File,pit3File,rol3File)
%[Pdiff] = plot_tilt(rpcFile,pitFile,rolFile,...
% ...rpc2File,pit2File,rol2File,rpc3Fil
www.eeworm.com/read/367956/9722149
plot mflood-scene.plot
set term png medium monochrome
set output "mflood-scene.png"
set ylabel "Transmission Speed(KB/s)"
set xlabel "Time(s)"
set key left top box
set title "MFlood Ananysis"
plot "mflood-scene-1-2.data" ti
www.eeworm.com/read/172007/9727035
m plot_result.m
plot(xyreal(1,1:2:14),xyreal(3,1:2:14),'r*-')
hold on
plot(xyreal(1,2:2:14),xyreal(3,2:2:14),'r*-')
hold on
plot(x_init(1,1:7),x_init(4,1:7),'g*-')
hold on
plot(x_init(1,8:14),x_init(4,8:14)
www.eeworm.com/read/171829/9734991
cpp plot_arr.cpp
#include
#include
const int size = 5;
class plot
{
int x, y;
public:
plot(int i, int j)
{
if(i>size)
i = size;
if(i
www.eeworm.com/read/367152/9780011
m lans_plot.m
% lans_plot - Plot D-dimensional vector across multiple classes
%
% [h] = lans_plot(data, p, options)
% lans_plot(data, p)
% lans_plot(data, options)
% lans_plot(data)
%
% _____OUTPUTS_______
www.eeworm.com/read/367152/9780150
jpg lans_plot.jpg
www.eeworm.com/read/415663/11059320
m plot_route.m
function plot_route(node_coord, route_path, color, draw_text)
%visualize the routing path
draw_text = 1;
if size(node_coord,2)~=2
error('wrong format in node_coord');
end
n = size(node_coord,1);
h
www.eeworm.com/read/415663/11059344
m plot_errorbar.m
function plot_errorbar(arr, x, color, msz, use_errorbar)
if nargin
www.eeworm.com/read/415663/11059482
m plot_mean.m
function plot_mean(arr, x, color, msz)
y = mean(arr,2);
l = y - min(arr,[],2);
u = max(arr,[],2) - y;
%errorbar(x, y, l, u, color, 'MarkerSize', msz)
plot(x, y, color, 'MarkerSize', msz)
www.eeworm.com/read/415311/11077219
m plot_process.m
function plot_process(mu)
%Plot the mu's during an algorithm's execution
%Inputs:
% mu - The location of points
% No outputs
h = findobj('UserData','mu');
if (~isempty(h)),
delete(h