en
Feedback
MATLAB TIPS

MATLAB TIPS

Open in Telegram

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

Show more
2 690
Subscribers
+124 hours
-57 days
-1030 days
Attracting Subscribers
August '26
August '26
+26
in 0 channels
July '26
+37
in 1 channels
Get PRO
June '26
+59
in 0 channels
Get PRO
May '26
+26
in 0 channels
Get PRO
April '26
+46
in 0 channels
Get PRO
March '26
+43
in 0 channels
Get PRO
February '26
+39
in 0 channels
Get PRO
January '26
+34
in 0 channels
Get PRO
December '25
+77
in 0 channels
Get PRO
November '25
+49
in 1 channels
Get PRO
October '25
+45
in 0 channels
Get PRO
September '25
+34
in 0 channels
Get PRO
August '25
+37
in 0 channels
Get PRO
July '25
+40
in 0 channels
Get PRO
June '25
+43
in 0 channels
Get PRO
May '25
+33
in 0 channels
Get PRO
April '25
+36
in 0 channels
Get PRO
March '25
+50
in 1 channels
Get PRO
February '25
+43
in 0 channels
Get PRO
January '25
+47
in 1 channels
Get PRO
December '24
+62
in 1 channels
Get PRO
November '24
+106
in 0 channels
Get PRO
October '24
+130
in 0 channels
Get PRO
September '24
+131
in 1 channels
Get PRO
August '24
+168
in 0 channels
Get PRO
July '24
+85
in 0 channels
Get PRO
June '24
+72
in 0 channels
Get PRO
May '24
+108
in 0 channels
Get PRO
April '24
+123
in 0 channels
Get PRO
March '24
+115
in 0 channels
Get PRO
February '24
+121
in 0 channels
Get PRO
January '24
+90
in 0 channels
Get PRO
December '23
+95
in 0 channels
Get PRO
November '23
+61
in 0 channels
Get PRO
October '23
+77
in 0 channels
Get PRO
September '23
+80
in 0 channels
Get PRO
August '23
+35
in 0 channels
Get PRO
July '23
+57
in 0 channels
Get PRO
June '23
+40
in 0 channels
Get PRO
May '23
+40
in 0 channels
Get PRO
April '23
+54
in 0 channels
Get PRO
March '23
+35
in 0 channels
Get PRO
February '23
+42
in 0 channels
Get PRO
January '23
+38
in 0 channels
Get PRO
December '22
+53
in 0 channels
Get PRO
November '22
+51
in 0 channels
Get PRO
October '22
+45
in 0 channels
Get PRO
September '22
+71
in 0 channels
Get PRO
August '22
+49
in 0 channels
Get PRO
July '22
+37
in 0 channels
Get PRO
June '22
+49
in 0 channels
Get PRO
May '22
+69
in 0 channels
Get PRO
April '22
+61
in 0 channels
Get PRO
March '22
+62
in 0 channels
Get PRO
February '22
+51
in 0 channels
Get PRO
January '22
+30
in 0 channels
Get PRO
December '21
+27
in 0 channels
Get PRO
November '21
+36
in 0 channels
Get PRO
October '21
+36
in 0 channels
Get PRO
September '21
+27
in 0 channels
Get PRO
August '21
+28
in 0 channels
Get PRO
July '21
+21
in 0 channels
Get PRO
June '21
+30
in 0 channels
Get PRO
May '21
+20
in 0 channels
Get PRO
April '21
+33
in 0 channels
Get PRO
March '21
+43
in 0 channels
Get PRO
February '21
+42
in 0 channels
Get PRO
January '21
+27
in 0 channels
Get PRO
December '20
+1 610
in 0 channels
Date
Subscriber Growth
Mentions
Channels
26 August+1
25 August+1
24 August0
23 August0
22 August+2
21 August+1
20 August+2
19 August+1
18 August0
17 August+2
16 August+1
15 August0
14 August0
13 August0
12 August0
11 August+1
10 August+2
09 August+2
08 August+3
07 August+1
06 August+1
05 August+1
04 August0
03 August+1
02 August+3
01 August0
Channel Posts
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)
50
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);
60
4
No text...
61
5
No text...
62
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.
97
7
What Is Polyspace Code Prover? #YouTube via MATLAB@YouTube (author: MATLAB)
83
8
Control Systems - University of Cape Town MATLAB Central - File Exchange - rating:5.0
97
9
How to Forecast Data Using the Econometric Modeler App in MATLAB #YouTube via MATLAB@YouTube (author: MATLAB)
119
10
Wyoming_Radiosonde_Downloader_CSV_GB.m MATLAB Central - File Exchange - rating:4.5
127
11
pinn-toolbox MATLAB Central - File Exchange - rating:5.0
159
12
Hurwitz Matrix MATLAB Central - File Exchange - rating:4.7
166
13
MRES 6th Edition and PRES 2nd Edition – Errata / Corrections via MATLAB and Python Recipes for Earth Sciences (author: Martin H. Trauth)
179
14
JOSS:RGTFun: An Open-Source MATLAB App for Rarefied Gas Transport Coefficient Calculations
180
15
inequalityplot MATLAB Central - File Exchange - rating:5.0
146
16
What Is Polyspace Bug Finder? #YouTube via MATLAB@YouTube (author: MATLAB)
149
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)
156