ch
Feedback
MATLAB TIPS

MATLAB TIPS

前往频道在 Telegram

Matlab的一些现成脚本、函数,前人写的技巧、教程、文档。 Just tricks that finally work or what have learnt through search engines.受限于个人领域和Matlab水平,诚邀频道管理者;只要在使用Matlab过程中顺手把用上的网页、帖子发上来就好,十分简单。请联系 @MatLabTipsBot。#MATLAB

显示更多
2 690
订阅者
-524 小时
-57
-730
吸引订阅者
八月 '26
八月 '26
+26
在0个频道中
七月 '26
+37
在1个频道中
Get PRO
六月 '26
+59
在0个频道中
Get PRO
五月 '26
+26
在0个频道中
Get PRO
四月 '26
+46
在0个频道中
Get PRO
三月 '26
+43
在0个频道中
Get PRO
二月 '26
+39
在0个频道中
Get PRO
一月 '26
+34
在0个频道中
Get PRO
十二月 '25
+77
在0个频道中
Get PRO
十一月 '25
+49
在1个频道中
Get PRO
十月 '25
+45
在0个频道中
Get PRO
九月 '25
+34
在0个频道中
Get PRO
八月 '25
+37
在0个频道中
Get PRO
七月 '25
+40
在0个频道中
Get PRO
六月 '25
+43
在0个频道中
Get PRO
五月 '25
+33
在0个频道中
Get PRO
四月 '25
+36
在0个频道中
Get PRO
三月 '25
+50
在1个频道中
Get PRO
二月 '25
+43
在0个频道中
Get PRO
一月 '25
+47
在1个频道中
Get PRO
十二月 '24
+62
在1个频道中
Get PRO
十一月 '24
+106
在0个频道中
Get PRO
十月 '24
+130
在0个频道中
Get PRO
九月 '24
+131
在1个频道中
Get PRO
八月 '24
+168
在0个频道中
Get PRO
七月 '24
+85
在0个频道中
Get PRO
六月 '24
+72
在0个频道中
Get PRO
五月 '24
+108
在0个频道中
Get PRO
四月 '24
+123
在0个频道中
Get PRO
三月 '24
+115
在0个频道中
Get PRO
二月 '24
+121
在0个频道中
Get PRO
一月 '24
+90
在0个频道中
Get PRO
十二月 '23
+95
在0个频道中
Get PRO
十一月 '23
+61
在0个频道中
Get PRO
十月 '23
+77
在0个频道中
Get PRO
九月 '23
+80
在0个频道中
Get PRO
八月 '23
+35
在0个频道中
Get PRO
七月 '23
+57
在0个频道中
Get PRO
六月 '23
+40
在0个频道中
Get PRO
五月 '23
+40
在0个频道中
Get PRO
四月 '23
+54
在0个频道中
Get PRO
三月 '23
+35
在0个频道中
Get PRO
二月 '23
+42
在0个频道中
Get PRO
一月 '23
+38
在0个频道中
Get PRO
十二月 '22
+53
在0个频道中
Get PRO
十一月 '22
+51
在0个频道中
Get PRO
十月 '22
+45
在0个频道中
Get PRO
九月 '22
+71
在0个频道中
Get PRO
八月 '22
+49
在0个频道中
Get PRO
七月 '22
+37
在0个频道中
Get PRO
六月 '22
+49
在0个频道中
Get PRO
五月 '22
+69
在0个频道中
Get PRO
四月 '22
+61
在0个频道中
Get PRO
三月 '22
+62
在0个频道中
Get PRO
二月 '22
+51
在0个频道中
Get PRO
一月 '22
+30
在0个频道中
Get PRO
十二月 '21
+27
在0个频道中
Get PRO
十一月 '21
+36
在0个频道中
Get PRO
十月 '21
+36
在0个频道中
Get PRO
九月 '21
+27
在0个频道中
Get PRO
八月 '21
+28
在0个频道中
Get PRO
七月 '21
+21
在0个频道中
Get PRO
六月 '21
+30
在0个频道中
Get PRO
五月 '21
+20
在0个频道中
Get PRO
四月 '21
+33
在0个频道中
Get PRO
三月 '21
+43
在0个频道中
Get PRO
二月 '21
+42
在0个频道中
Get PRO
一月 '21
+27
在0个频道中
Get PRO
十二月 '20
+1 610
在0个频道中
日期
订阅者增长
提及
频道
26 八月+1
25 八月+1
24 八月0
23 八月0
22 八月+2
21 八月+1
20 八月+2
19 八月+1
18 八月0
17 八月+2
16 八月+1
15 八月0
14 八月0
13 八月0
12 八月0
11 八月+1
10 八月+2
09 八月+2
08 八月+3
07 八月+1
06 八月+1
05 八月+1
04 八月0
03 八月+1
02 八月+3
01 八月0
频道帖子
Engineering with Agentic AI: Using Skills to Improve Your Agent #YouTube via MATLAB@YouTube (author: MATLAB)

2
The All-Electric Flying Machine Reinventing Sea Travel #YouTube via MATLAB@YouTube (author: MATLAB)
38
3
📡 MATLAB Central - File Exchange - rating:5.0 | truncAxis (break X/Y axis | 截断坐标轴) Basic usagetruncAxis(gca, 'X', [x1, x2])truncAxis(gca, 'Y', [y1, y2])truncAxis(gca, 'X', [x1, x2], 'Y', [y1, y2]) Where:x1, x2: break points on X-axis, satisfying XLim(1) < x1 < x2 < XLim(2)y1, y2: break points on Y-axis, satisfying YLim(1) < y1 < y2 < YLim(2)Demo 1X = linspace(0, 2*pi, 100);Y = exp(.3*X).*sin(3*X);scatter(X, Y, 'LineWidth',1);set(gca, 'Box','on', 'NextPlot','add', 'LineWidth',1.5, ... 'FontName','Times New Roman', 'FontSize',15, ... 'XLim',[0, 6], 'YLim',[-6, 6], 'XColor','r','YColor','b', ... 'XMinorTick','on', 'YMinorTick','on', 'TickDir','out', 'TickLength',[.005,.001]);truncAxis('X',[4, 4.5], 'Y',[2, 3], 'XResize','on', 'YResize','on')legendDemo 2% Generate sample dataData = [randi([20, 35], [5, 1]), randi([160, 190], [5, 1])];err = rand([5, 2]) .* 5;hold onbarHdl = bar(Data, 'BarWidth', 1, 'LineWidth',1);% Customize bar colors and transparencybarHdl(1).FaceColor = [153, 153, 253] ./ 255;barHdl(2).FaceColor = [255, 153, 154] ./ 255;barHdl(1).FaceAlpha = 0.9;barHdl(2).FaceAlpha = 0.9;% Render and customize error barserrorbar(barHdl(1).XEndPoints, Data(:, 1), err(:, 1), ... 'LineStyle', 'none', 'Color', 'k', 'LineWidth', 1);errorbar(barHdl(2).XEndPoints, Data(:, 2), err(:, 2), ... 'LineStyle', 'none', 'Color', 'k', 'LineWidth', 1);% Axes styling and label customizationax = gca;ax.YLim = [0, 200];ax.LineWidth = 1;ax.TickLength = [0.005, 0.001];ax.Box = 'on';ax.FontSize = 13;ax.XTick = 1:5;ax.XTickLabel = {'A', 'B', 'C', 'D', 'E'};axMat = truncAxis('Y', [50, 155]);axMat(1).Children(end).BaseLine.Color = 'none';% Add legendlegend({'AAAAA', 'BBBBB'}, 'FontSize', 13);
50
4
没有文字...
55
5
没有文字...
61
6
Electrolyzer modelling toolbox MATLAB Central - File Exchange - rating:5.0 (RSS) [![View Electrolyzer modelling toolbox on File Exchange](https://www.mathworks.com/matlabcentral/images/matlab-file-exchange.svg)](https://se.mathworks.com/matlabcentral/fileexchange/117175-electrolyzer-modelling-toolbox)### GENERAL DESCRIPTIONThis toolbox is a Matlab tool for electrolysis modelling, for both PEM and alkaline systems. Main functionality is in parametrization of the UI curvebased on measured data. This toolbox aims to simplify the process and provide easy-to-use commands for quickly determining the UI curve parameter values and their margins of uncertainty.Since version 2.0.0, dynamic modeling functionality has been added, being capable of fitting model parameters from time-dependent data sets and using the fit parameters to simulate dynamic voltage response to arbitrarycurrent waveforms.---### INSTALLATIONMATLAB needs to be installed on the computer for the user to be able toinstall the electrolyzer modelling toolbox. Following steps install thetoolbox for that matlab installation:1. Download the provided electrolyzerModellingToolbox.mltbx file from the releases page. - Double click on the .mltbx file to initiate installation.2. Once the installation completes the toolbox functions are usable in all matlab projects---### AUTHORS AND CONTACTSPietari PuranenJunior researcher at the Lappeenranta-Lahti University of Technology LUTEmail: Pietari.Puranen@lut.fiLauri JärvinenJunior researcher at the Lappeenranta-Lahti University of Technology LUTEmail: Lauri.Jarvinen@lut.fi---### AKNOWLEDGEMENTSMarchov Chain Monte Carlo (MCMC) tools provided by Marko Laine have been used for the determination of uncertainty in curve fitting when using the particleswarm optimization method. The licensing for the tools can be foundunder ./Utils/mcmcstat/LICENSE.txtThe Academy of Finland is acknowledged for the main financial support ofthe Research of Power Quality Effect on Water Electrolyzer Operation (POQELYZER) project.
94
7
What Is Polyspace Code Prover? #YouTube via MATLAB@YouTube (author: MATLAB)
82
8
Control Systems - University of Cape Town MATLAB Central - File Exchange - rating:5.0
93
9
How to Forecast Data Using the Econometric Modeler App in MATLAB #YouTube via MATLAB@YouTube (author: MATLAB)
115
10
Wyoming_Radiosonde_Downloader_CSV_GB.m MATLAB Central - File Exchange - rating:4.5
124
11
pinn-toolbox MATLAB Central - File Exchange - rating:5.0
158
12
Hurwitz Matrix MATLAB Central - File Exchange - rating:4.7
165
13
MRES 6th Edition and PRES 2nd Edition – Errata / Corrections via MATLAB and Python Recipes for Earth Sciences (author: Martin H. Trauth)
174
14
JOSS:RGTFun: An Open-Source MATLAB App for Rarefied Gas Transport Coefficient Calculations
176
15
inequalityplot MATLAB Central - File Exchange - rating:5.0
144
16
What Is Polyspace Bug Finder? #YouTube via MATLAB@YouTube (author: MATLAB)
147
17
Digitizer MATLAB Central - File Exchange - rating:5.0
156
18
Embedded Intelligence: The Future of Engineering Design #YouTube via MATLAB@YouTube (author: MATLAB)
159
19
Maximally Distinct Color Generator MATLAB Central - File Exchange - rating:5.0
149
20
Spline Fitting Explained: How to Smooth Noisy Data in MATLAB #YouTube via MATLAB@YouTube (author: MATLAB)
155