MATLAB | 有关数值矩阵、颜色图及颜色列表的技巧整理
这是一篇有关数值矩阵、颜色矩阵、颜色列表的技巧整合,会以随笔的形式想到哪写到哪,可能思绪会比较飘逸请大家见谅,本文大体分为以下几个部分:
- 数值矩阵用颜色显示
- 从颜色矩阵提取颜色
- 从颜色矩阵中提取数据
- 颜色列表相关函数
- 颜色测试图表的识别
数值矩阵用颜色显示
heatmap
我们最常用的肯定就是heatmap函数显示数值矩阵:
X=rand(10);
heatmap(X);
字体颜色可设置为透明:
X=rand(10);
HM=heatmap(X);
HM.CellLabelColor='none';
如果由NaN值,会显示为黑色:
X=rand(10);
X([3,4,15])=nan;
HM=heatmap(X);
HM.CellLabelColor='none';
这个颜色也可以改,比如改成浅灰色:
X=rand(10);
X([3,4,15])=nan;
HM=heatmap(X);
HM.CellLabelColor='none';
HM.MissingDataColor=[.8,.8,.8];
imagesc
imagesc随便加个colorbar就和heatmap非常像了,而且比较容易进行图像组合(heatmap的父类不能是axes),但是没有边缘:
X=rand(10);
imagesc(X)
colormap(winter)
colorbar
比较烦的是imagesc即使数据有NaN也会对其进行插值显示,好坏参半吧。
另外随便写了点代码发现MATLAB自带的幻方绘制挺有规律的hiahiahia:
for i=1:16ax=subplot(4,4,i);hold on;axis tight off equalX=magic(3+i);imagesc(X);
end
image
image函数单通道时也可以设置colormap来进行颜色映射:
load spine
image(X)
colormap(map)
pcolor
pcolor由于每个方块颜色都会使用左上角的数值来计算,因此会缺一行一列,我们可以补上一行一列nan:
X=rand(6);
X(end+1,:)=nan;
X(:,end+1)=nan;
pcolor(X);
colormap(winter)
colorbar
可修饰的东西就比较丰富了,比如边缘颜色:
X=rand(6);
X(end+1,:)=nan;
X(:,end+1)=nan;
pHdl=pcolor(X);
pHdl.EdgeColor=[1,1,1];
pHdl.LineWidth=2;
colormap(winter)
colorbar
气泡图
气泡图大概也能冒充一下热图:
Z=rand(7);
[X,Y]=meshgrid(1:size(Z,2),1:size(Z,1));bubblechart(X(:),Y(:),Z(:),Z(:),'MarkerFaceAlpha',.6)
colormap(parula)
colorbar
set(gca,'XTick',1:size(Z,2),'YTick',1:size(Z,1),'LineWidth',1,...'XGrid','on','YGrid','on','FontName','Cambria','FontSize',13)
随便写着玩
虽然surf函数调整视角也像是热图的样子,但是不打算讲了,反而等高线填充图虽然不像热图但是很有意思,感觉可以当作colormap展示的示例图:
X=rand(10);
CF=contourf(X);
colormap(winter)
colorbar
从颜色矩阵提取颜色
像素提取器
需要安装:
Image Processing Toolbox
图像处理工具箱.
使用以下代码可以显示每个像素RGB值:
imshow('peppers.png')
impixelregion
图片颜色统计小函数
我写过一个RGB颜色统计图绘制函数:
function HistogramPic(pic)
FreqNum=zeros(size(pic,3),256);
for i=1:size(pic,3)for j=0:255FreqNum(i,j+1)=sum(sum(pic(:,:,i)==j));end
end
ax=gca;hold(ax,'on');box on;grid on
if size(FreqNum,1)==3bar(0:255,FreqNum(1,:),'FaceColor',[0.6350 0.0780 0.1840],'FaceAlpha',0.5);bar(0:255,FreqNum(2,:),'FaceColor',[0.2400 0.5300 0.0900],'FaceAlpha',0.5);bar(0:255,FreqNum(3,:),'FaceColor',[0 0.4470 0.7410],'FaceAlpha',0.5);ax.XLabel.String='RGB brightness';rrange=[num2str(min(pic(:,:,1),[],[1,2])),' , ',num2str(max(pic(:,:,1),[],[1,2]))];grange=[num2str(min(pic(:,:,2),[],[1,2])),' , ',num2str(max(pic(:,:,2),[],[1,2]))];brange=[num2str(min(pic(:,:,3),[],[1,2])),' , ',num2str(max(pic(:,:,3),[],[1,2]))];legend({['R: range[',rrange,']'],['G: range[',grange,']'],['B: range[',brange,']']},...'Location','northwest','Color',[0.9412 0.9412 0.9412],...'FontName','Cambria','LineWidth',0.8,'FontSize',11);
else bar(0:255,FreqNum(1,:),'FaceColor',[0.50 0.50 0.50],'FaceAlpha',0.5);ax.XLabel.String='Gray scale';krange=[num2str(min(pic(:,:,1),[],[1,2])),' , ',num2str(max(pic(:,:,1),[],[1,2]))];legend(['Gray: range[',krange,']'],...'Location','northwest','Color',[0.9412 0.9412 0.9412],...'FontName','Cambria','LineWidth',0.8,'FontSize',11);
end
ax.LineWidth=1;
ax.GridLineStyle='--';
ax.XLim=[-5 255];
ax.XTick=[0:45:255,255];
ax.YLabel.String='Frequency number';
ax.FontName='Cambria';
ax.FontSize=13;
end
非常简单的使用方法,就是读取图片后调用函数即可:
pic=imread('test.png');
HistogramPic(pic)
若图像为灰度图则效果如下:
色卡生成器
从图片中提取主要颜色:https://mp.weixin.qq.com/s/Pj6t0SMDBAjQi3ecj6KVaA
颜色提取器
推荐两款颜色提取器,一款免费一款付费:
免费版:https://mp.weixin.qq.com/s/uIyvqQa9Vnz7gYLgd7lUtg
付费版:https://mp.weixin.qq.com/s/BpegP7CpOQERwrUXHexsGQ
从颜色矩阵中提取数据
之前写过一列把热图变为数值矩阵的函数,可以去瞅一眼:https://mp.weixin.qq.com/s/wzqCCFF2yvC80-ruqMKOpQ
颜色列表相关函数
颜色方块展示函数
写了个用来显示颜色的小函数:
function colorSwatches(C,sz)
ax=gca;hold on;
ax.YDir='reverse';
ax.XColor='none';
ax.YColor='none';
ax.DataAspectRatio=[1,1,1];
for i=1:sz(1)for j=1:sz(2)if j+(i-1)*sz(2)<=size(C,1)fill([-.4,-.4,.4,.4]+j,[-.4,.4,.4,-.4]+i,C(j+(i-1)*sz(2),:),...'EdgeColor','none')endend
end
end
使用方式(第一个参数是颜色列表,第二个参数是显示行列数):
C=lines(7);
colorSwatches(C,[3,3])
C=[0.6471 0 0.14900.7778 0.1255 0.15160.8810 0.2680 0.18950.9569 0.4275 0.26270.9804 0.5974 0.34120.9935 0.7477 0.44180.9961 0.8784 0.56470.9987 0.9595 0.68760.9595 0.9843 0.82350.8784 0.9529 0.97250.7399 0.8850 0.93330.5987 0.7935 0.88240.4549 0.6784 0.81960.3320 0.5320 0.74380.2444 0.3765 0.66540.1922 0.2118 0.5843];
colorSwatches(C,[4,4])
插值
要是自己准备的颜色列表颜色数量少可能会不连续:
XData=rand(15,15);
XData=XData+XData.';
H=fspecial('average',3);
XData=imfilter(XData,H,'replicate');imagesc(XData)
CM=[0.6196 0.0039 0.25880.8874 0.3221 0.28960.9871 0.6459 0.36360.9972 0.9132 0.60340.9300 0.9720 0.63980.6319 0.8515 0.64370.2835 0.6308 0.70080.3686 0.3098 0.6353];
colormap(CM)
colorbar
hold on
ax=gca;
ax.DataAspectRatio=[1,1,1];
可以对其进行插值:
rng(24)
XData=rand(15,15);
XData=XData+XData.';
H=fspecial('average',3);
XData=imfilter(XData,H,'replicate');imagesc(XData)
CM=[0.6196 0.0039 0.25880.8874 0.3221 0.28960.9871 0.6459 0.36360.9972 0.9132 0.60340.9300 0.9720 0.63980.6319 0.8515 0.64370.2835 0.6308 0.70080.3686 0.3098 0.6353];
CMX=linspace(0,1,size(CM,1));
CMXX=linspace(0,1,256)';
CM=[interp1(CMX,CM(:,1),CMXX,'pchip'),interp1(CMX,CM(:,2),CMXX,'pchip'),interp1(CMX,CM(:,3),CMXX,'pchip')];
colormap(CM)
colorbar
hold on
ax=gca;
ax.DataAspectRatio=[1,1,1];
colormap编辑器
colormapeditor
编辑完可以另存工作区,之后存为mat文件:
save CM.mat CustomColormap
之后画图就可以用啦:
rgbImage=imread("peppers.png");
imagesc(rgb2gray(rgbImage))load CM.mat
colormap(CustomColormap)
colormap显示
Steve Eddins大佬写了个美观的colormap展示器
Steve Eddins (2023). Colormap Test Image (https://www.mathworks.com/matlabcentral/fileexchange/63726-colormap-test-image), MATLAB Central File Exchange. 检索来源 2023/2/13.
function I = colormapTestImage(map)
% colormapTestImage Create or display colormap test image.
% I = colormapTestImage creates a grayscale image matrix that is useful
% for evaluating the effectiveness of colormaps for visualizing
% sequential data. In particular, the small-amplitude sinusoid pattern at
% the top of the image is useful for evaluating the perceptual uniformity
% of a colormap.
%
% colormapTestImage(map) displays the test image using the specified
% colormap. The colormap can be specified as the name of a colormap
% function (such as 'parula' or 'jet'), a function handle to a colormap
% function (such as @parula or @jet), or a P-by-3 colormap matrix.
%
% EXAMPLES
%
% Compute the colormap test image and save it to a file.
%
% mk = colormapTestImage;
% imwrite(mk,'test-image.png');
%
% Compare the perceptual characteristics of the parula and jet
% colormaps.
%
% colormapTestImage('parula')
% colormapTestImage('jet')
%
% NOTES
%
% The image is inspired by and adapted from the test image proposed in
% Peter Kovesi, "Good Colour Maps: How to Design Them," CoRR, 2015,
% https://arxiv.org/abs/1509.03700
%
% The upper portion of the image is a linear ramp (from 0.05 to 0.95)
% with a superimposed sinusoid. The amplitude of the sinusoid ranges from
% 0.05 at the top of the image to 0 at the bottom of the upper portion.
%
% The lower portion of the image is a pure linear ramp from 0.0 to 1.0.
%
% This test image differs from Kovesi's in three ways:
%
% (a) The Kovesi test image superimposes a sinusoid on top of a
% full-range linear ramp (0 to 1). It then rescales each row
% independently to have full range, resulting in a linear trend slope
% that slowly varies from row to row. The modified test image uses the
% same linear ramp (0.05 to 0.95) on each row, with no need for
% rescaling.
%
% (b) The Kovesi test image has exactly 64 sinusoidal cycles
% horizontally. This test image has 64.5 cycles plus one sample. With
% this modification, the sinusoid is at the cycle minimum at the left
% of the image, and it is at the cycle maximum at the right of the
% image. With this modification, the top row of the modified test image
% varies from exactly 0.0 on the left to exactly 1.0 on the right,
% without rescaling.
%
% (c) The modified test image adds to the bottom of the image a set of
% rows containing a full-range (0.0 to 1.0) linear ramp with no
% sinusoidal variation. That makes it easy to view how the colormap
% appears with a full-range linear ramp.
%
% Reference: Peter Kovesi, "Good Colour Maps: How to Design Them,"
% CoRR, 2015, https://arxiv.org/abs/1509.03700% Steve Eddins
% Copyright 2017 The MathWorks, Inc.% Compare with 64 in Kovesi 2015. Adding a half-cycle here so that the ramp
% + sinusoid will be at the lowest part of the cycle on the left side of
% the image and at the highest part of the cycle on the right side of the
% image.
num_cycles = 64.5;if nargin < 1I = testImage(num_cycles);
elsedisplayTestImage(map,num_cycles)
endfunction I = testImage(num_cycles)pixels_per_cycle = 8;
A = 0.05;% Compare with width = pixels_per_cycle * num_cycles in Kovesi 2015. Here,
% the extra sample is added to fully reach the peak of the sinusoid on the
% right side of the image.
width = pixels_per_cycle * num_cycles + 1;% Determined by inspection of
% http://peterkovesi.com/projects/colourmaps/colourmaptest.tif
height = round((width - 1) / 4);% The strategy for superimposing a varying-amplitude sinusoid on top of a
% ramp is somewhat different from Kovesi 2015. For each row of the test
% image, Kovesi adds the sinusoid to a full-range ramp and then rescales
% the row so that ramp+sinusoid is full range. A benefit of this approach
% is that each row is full range. A drawback is that the linear trend of
% each row varies as the amplitude of the superimposed sinusoid changes.
%
% Our approach here is a modification. The same linear ramp is used for
% every row of the test image, and it goes from A to 1-A, where A is the
% amplitude of the sinusoid. That way, the linear trend is identical on
% each row. The drawback is that the bottom of the test image goes from
% 0.05 to 0.95 (assuming A = 0.05) instead of from 0.00 to 1.00.
ramp = linspace(A, 1-A, width);k = 0:(width-1);
x = -A*cos((2*pi/pixels_per_cycle) * k);% Amplitude of the superimposed sinusoid varies with the square of the
% distance from the bottom of the image.
q = 0:(height-1);
y = ((height - q) / (height - 1)).^2;
I1 = (y') .* x;% Add the sinusoid to the ramp.
I = I1 + ramp;% Add region to the bottom of the image that is a full-range linear ramp.
I = [I ; repmat(linspace(0,1,width), round(height/4), 1)];function displayTestImage(map,num_cycles)name = '';
if isstring(map)map = char(map);name = map;f = str2func(map);map = f(256);
elseif ischar(map)name = map;f = str2func(map);map = f(256);
elseif isa(map,'function_handle')name = func2str(map);map = map(256);
endI = testImage(num_cycles);
[M,N] = size(I);% Display the image with a width of 2mm per cycle.
display_width_cm = num_cycles * 2 / 10;
display_height_cm = display_width_cm * M / N;fig = figure('Visible','off',...'Color','k');
fig.Units = 'centimeters';% Figure width and height will be image width and height plus 2 cm all the
% way around.
margin = 2;
fig_width = display_width_cm + 2*margin;
fig_height = display_height_cm + 2*margin;
fig.Position(3:4) = [fig_width fig_height];ax = axes('Parent',fig,...'DataAspectRatio',[1 1 1],...'YDir','reverse',...'CLim',[0 1],...'XLim',[0.5 N+0.5],...'YLim',[0.5 M+0.5]);
ax.Units = 'centimeters';
ax.Position = [margin margin display_width_cm display_height_cm];
ax.Units = 'normalized';
box(ax,'off')im = image('Parent',ax,...'CData',I,...'XData',[1 N],...'YData',[1 M],...'CDataMapping','scaled');if ~isempty(name)title(ax,name,'Color',[0.8 0.8 0.8],'Interpreter','none')
end% Draw scale line.
pixels_per_centimeter = N / (display_width_cm);
x = [0.5 5*pixels_per_centimeter];
y = (M + 30) * [1 1];
line('Parent',ax,...'XData',x,...'YData',y,...'Color',[0.8 0.8 0.8],...'Clipping','off');
text(ax,mean(x),y(1),'5cm',...'VerticalAlignment','top',...'HorizontalAlignment','center',...'Color',[0.8 0.8 0.8]);colormap(fig,map)fig.Visible = 'on';
用的时候就正常后面放颜色列表就行:
colormapTestImage(jet)
有趣实例
Ned Gulley大佬在迷你黑客大赛有趣的数据分析中给出的图片,展示了各种colormap使用频率排行:
https://blogs.mathworks.com/community/2022/11/08/minihack2022/?s_tid=srchtitle_minihack_1&from=cn
没提供完整代码我自己写了个:
cmaps={'jet','hot','hsv','gray','copper','colorcube','turbo','bone','lines'};
props=[.75,.69,.68,.4,.33,.32,.3,.3,.27];ax=gca;hold on
ax.XLim=[0,max(props)];
ax.YLim=[.3,1.3*length(cmaps)+1];
ax.YTick=(1:length(cmaps)).*1.3;
ax.YTickLabel=cmaps;
ax.YDir='reverse';
for i=1:length(cmaps)c=eval(cmaps{i});c=reshape(c,1,size(c,1),3);image([0,props(i)],[i,i].*1.3,c);rectangle('Position',[0 i.*1.3-.5,props(i) 1])
end
rgbplot
统计colormap中RGB值变化:
rgbplot(parula)
hold on
colormap(parula)
colorbar('Ticks',[])
修饰一下能好看点:
rgbplot(parula)
hold on
colormap(parula)
colorbar('Ticks',[])ax=gca;hold on;axis tight
set(ax,'XMinorTick','on','YMinorTick','on','FontName','Cambria',...'XGrid','on','YGrid','on','GridLineStyle','-.','GridAlpha',.1,'LineWidth',.8);
lHdl=findobj(ax,'type','line');
for i=1:length(lHdl)lHdl(i).LineWidth=2;
end
颜色测试图表的识别
需要安装:
Image Processing Toolbox
图像处理工具箱.
首先展示一下示例图片:
I=imread("colorCheckerTestImage.jpg");
imshow(I)
检测并进行位置标注:
chart=colorChecker(I);
displayChart(chart)
四个角点位置:
chart.RegistrationPoints
ans =
1.0e+03 *
1.3266 0.8282
0.7527 0.8147
0.7734 0.4700
1.2890 0.4632
展示检测颜色:
colorTable=measureColor(chart)
展示标准颜色和检测颜色差别:
figure
displayColorPatch(colorTable)
绘制CIE 1976 L* a* b*颜色空间中的测量和参考颜色对比:
figure
plotChromaticity(colorTable)
相关文章:
MATLAB | 有关数值矩阵、颜色图及颜色列表的技巧整理
这是一篇有关数值矩阵、颜色矩阵、颜色列表的技巧整合,会以随笔的形式想到哪写到哪,可能思绪会比较飘逸请大家见谅,本文大体分为以下几个部分: 数值矩阵用颜色显示从颜色矩阵提取颜色从颜色矩阵中提取数据颜色列表相关函数颜色测…...
C++模板元编程详细教程(之九)
前序文章请看: C模板元编程详细教程(之一) C模板元编程详细教程(之二) C模板元编程详细教程(之三) C模板元编程详细教程(之四) C模板元编程详细教程(之五&…...
PhysioNet2017分类的代码实现
PhysioNet2017数据集介绍可参考文章:https://wendy.blog.csdn.net/article/details/128686196。本文主要介绍利用PhysioNet2017数据集对其进行分类的代码实现。 目录一、数据集预处理二、训练2.1 导入数据集并进行数据裁剪2.2 划分训练集、验证集和测试集2.3 设置训…...
正大期货本周财经大事抢先看
美国1月CPI、Fed 等央行官员谈话 美国1月超强劲的非农就业人口,让投资人开始上修对这波升息循环利率顶点的预测,也使本周二 (14 日) 的美国 1月 CPI 格外受关注。 介绍正大国际期货主账户对比国内期货的优势 第一点:权限都在主账户 例如…...
html+css综合练习一
文章目录一、小米注册页面1、要求2、案例图3、实现效果3.1、index.html3.2、style.css二、下午茶页面1、要求2、案例图3、index.html4、style.css三、法国巴黎页面1、要求2、案例图3、index.html4、style.css一、小米注册页面 1、要求 阅读下列说明、效果图,进行静…...
安装jdk8
目录标题一、下载地址(一)Linux下载(二)Win下载二、安装(一)Linux(二)Win三、卸载(一)Linux(二)Win一、下载地址 jdk8最新版 jdk8其他…...
二分法心得
原教程见labuladong 首先,我们建议左右区间全部用闭区间。那么第一个搜索区间:left0; rightlen-1; 进入while循环,结束条件是right<left。 然后求mid,如果nums[mid]的值比target大,说明target在左边,…...
Linux安装Docker完整教程
背景最近接手了几个项目,发现项目的部署基本上都是基于Docker的,幸亏在几年前已经熟悉的Docker的基本使用,没有抓瞎。这两年随着云原生的发展,Docker在云原生中的作用使得它也蓬勃发展起来。今天这篇文章就带大家一起实现一下在Li…...
备份基础知识
备份策略可包括:– 整个数据库(整个)– 部分数据库(部分)• 备份类型可指示包含以下项:– 所选文件中的所有数据块(完全备份)– 只限自以前某次备份以来更改过的信息(增量…...
C++学习记录——팔 内存管理
文章目录1、动态内存管理2、内存管理方式operator new operator delete3、new和delete的实现原理1、动态内存管理 C兼容C语言关于内存分配的语法,而添加了C独有的东西。 //int* p1 (int*)malloc(sizeof(int));int* p1 new int;new是一个操作符,C不再需…...
Spring事务失效原因分析解决
文章目录1、方法内部调用2、修饰符3、非运行时异常4、try…catch捕获异常5、多线程调用6、同时使用Transactional和Async7、错误使用事务传播行为8、使用的数据库不支持事务9、是否开启事务支持在工作中,经常会碰到一些事务失效的坑,基于遇到的情况&…...
4个月的测试经验,来面试就开口要17K,面试完,我连5K都不想给他.....
2021年8月份我入职了深圳某家创业公司,刚入职还是很兴奋的,到公司一看我傻了,公司除了我一个测试,公司的开发人员就只有3个前端2个后端还有2个UI,在粗略了解公司的业务后才发现是一个从零开始的项目,目前啥…...
python学习之pyecharts库的使用总结
pyecharts官方文档:https://pyecharts.org//#/zh-cn/ 【1】Timeline 其是一个时间轴组件,如下图红框所示,当点击红色箭头指向的“播放”按钮时,会呈现动画形式展示每一年的数据变化。 data格式为DataFrame,数据如下图…...
【taichi】利用 taichi 编写深度学习算子 —— 以提取右上三角阵为例
本文以取 (bs, n, n) 张量的右上三角阵并展平为向量 (bs, n*(n1)//2)) 为例,展示如何用 taichi 编写深度学习算子。 如图,要把形状为 (bs,n,n)(bs,n,n)(bs,n,n) 的张量,转化为 (bs,n(n1)2)(bs,\frac{n(n1)}{2})(bs,2n(n1)) 的向量。我们先写…...
二进制 k8s 集群下线 worker 组件流程分析和实践
文章目录[toc]事出因果个人思路准备实践当前 worker 节点信息将节点标记为不可调度驱逐节点 pod将 worker 节点从 k8s 集群踢出下线 worker 节点相关组件事出因果 因为之前写了一篇 二进制 k8s 集群下线 master 组件流程分析和实践,所以索性再写一个 worker 节点的缩…...
Bean的六种作用域
限定程序中变量的可用范围叫做作用域,Bean对象的作用域是指Bean对象在Spring整个框架中的某种行为模式~~ Bean对象的六种作用域: singleton:单例作用域(默认) prototype:原型作用域(多例作用域…...
Http发展历史
1 缘起 有一次,听到有人在议论招聘面试的人员, 谈及应聘人员的知识深度,说:问了一些关于Http的问题,如Http相关结构、网络结构等, 然后又说,问没问相关原理、来源? 我也是有些困惑了…...
高级Java程序员必备的技术点,你会了吗?
很多程序员在入行之后的前一两年,快速学习到了做项目常用的各种技术之后,便进入了技术很难寸进的平台期。反正手里掌握的一些技术对于应付普通项目来说,足够用了。因此也会缺入停滞,最终随着年龄的增长,竞争力不断下降…...
【暴力量化】查找最优均线
搜索逻辑 代码主要以支撑概率和压力概率来判断均线的优劣 判断为压力: 当日线与测试均线发生金叉或即将发生金叉后继续下行 判断为支撑: 当日线与测试均线发生死叉或即将发生死叉后继续上行 判断结果的天数: 小于6日均线,用金叉或…...
Java读取mysql导入的文件时中文字段出现�??的乱码如何解决
今天在写程序时遇到了一个乱码问题,困扰了好久,事情是这样的, 在Mapper层编写了查询语句,然后服务处调用,结果控制器返回一堆乱码 然后查看数据源头处: 由重新更改解码的字符集,在数据库中是正…...
k8s核心概念—Pod Controller Service介绍——20230213
文章目录一、Pod1. pod概述2. pod存在意义3. Pod实现机制4. pod镜像拉取策略5. pod资源限制6. pod重启机制7. pod健康检查8. 创建pod流程9. pod调度二、Controller1. 什么是Controller2. Pod和Controller关系3. deployment应用场景4. 使用deployment部署应用(yaml&a…...
Tensorflow的数学基础
Tensorflow的数学基础 在构建一个基本的TensorFlow程序之前,关键是要掌握TensorFlow所需的数学思想。任何机器学习算法的核心都被认为是数学。某种机器学习算法的策略或解决方案是借助于关键的数学原理建立的。让我们深入了解一下TensorFlow的数学基础。 Scalar 标…...
IT培训就是“包就业”吗?内行人这么看
大部分人毕业后选择参加职业技能培训,都是为了学完之后能找到好工作,而“就业服务”也成为各家培训机构对外宣传的重点内容。那么,所谓的“就业服务”就是“包就业”和“包底薪”吗?学完就一定能拿到offer吗?今天&…...
【算法】【数组与矩阵模块】顺时针旋转打印矩阵
目录前言问题介绍解决方案代码编写java语言版本c语言版本c语言版本思考感悟写在最后前言 当前所有算法都使用测试用例运行过,但是不保证100%的测试用例,如果存在问题务必联系批评指正~ 在此感谢左大神让我对算法有了新的感悟认识! 问题介绍 …...
Java中的锁概述
java中的锁java添加锁的两种方式:synchronized:关键字 修饰代码块,方法 自动获取锁、自动释放锁Reentrantlock:类 只能修饰代码块 手动加锁、释放锁java中锁的名词一些锁的名词指的是锁的特性,设计,状态&am…...
微电影行业痛点解决方案
在当下新媒体时代,微电影作为“微文化”的载体,具有“微”的特点,经过短短数年的快速发展,并获得了受众广泛的关注和喜爱,对人们的休闲娱乐方式也产生较大的影响。但在迅猛发展的同时也存在一些行业痛点,诸…...
使用Spring框架的好处是什么
使用Spring框架的好处是什么? 1、轻量:Spring 是轻量的,基本的版本大约2MB。 2、控制反转:Spring通过控制反转实现了松散耦合,对象们给出它们的依赖,而不是创建或查找依赖的对象们。 3、面向切面的编程(AOP…...
【表格单元格可编辑】vue-elementul简单实现table表格点击单元格可编辑,点击单元格变成弹框修改数据
前言 这是继我另一个帖子就是单元格点击变成输入框后添加的功能 因为考虑到有些时候修改单元格的信息可能点击后要修改很多,那一个输入框不好用 所以这时候就需要一个弹框可以把所有表单都显示出来修改 所以这里就专门又写了一个demo,用于处理这种情况 …...
vue3.0 响应式数据
目录1.什么是响应式2. 选项式 API 的响应式数据3.组合式 API 的响应式数据3.1 reactive() 函数3.2 toref() 函数3.3 toRefs() 函数3.4ref() 函数总结1.什么是响应式 这个术语在今天的各种编程讨论中经常出现,但人们说它的时候究竟是想表达什么意思呢?本质…...
uni-app ①
文章目录一、uni-app简介学习 uniapp 本质uniapp 优势uni-app 和 vue 的关系uni-app 和小程序有什么关系uniapp 与 web 代码编写区别课程内容学习重点知识点一、uni-app 简介 uni-app 是一个使用 Vue.js 进行 开发所有前端应用的框架。开发者编写一套代码,即可发布…...
免费电子商务网站建设/网站建设
#define_CRT_SECURE_NO_WARNINGS1#includeinta20;//全局变量intmain(){//局部周期只能在括号内的全局的就全部的//局部变量的作用域哪里能用他的就是他的作用域,还有全局变量作用域//计算两个数的和//intnum10;//intnum20;//intsum0;//c语言语法规定,变量…...
网站免费申请/正规seo需要多少钱
Python 自动化测试面试题目汇总 1、super 是干嘛用的?在 Python2 和 Python3 使用,有什么区别?为什么要使用 super?请举例说明。 答: super 用于继承父类的方法、属性。super 是新式类中才有的,所以 Pyt…...
=> wordpress 翻译 不显示/网络培训课程
仅作为记录,大佬请跳过。 原因是命名重复 展示: 参考: 感谢大佬博主文章传送门...
旅游网站怎么用dw做/网络营销方式
算法设计之五大常用算法设计方法总结 来源 http://blog.csdn.net/zolalad/article/details/11393915 一、【分治法】 在计算机科学中,分治法是一种很重要的算法。字面上的解释是“分而治之”,就是把一个复杂的问题分成两个或更多的相同或相似的子问题&am…...
浙江 网站建设/怎么引流客源最好的方法
文章目录1. RAID1.1 RAID磁盘陈列介绍1.2 RAID 0(条带化存储)1.3 RAID 1(镜像存储)1.4 RAID 5磁盘阵列介绍1.5 RAID 6磁盘陈列介绍1.6 RAID 10磁盘阵列介绍1.7 阵列卡介绍2.硬RAID创建磁盘阵列3.软RAID创建磁盘阵列3.1 实例:软创建RAID53.2 实…...