Telegram RegisterThe public register of Telegram

Channel

کانال تخصصی متلب

@Matlab_Communication

On this record: Growth · Engagement · What this channel posts · Posts · Citations · Cite this entry

6,878subscribers

-4 since we began measuring on 6 August 2026

Risers and fallers across the register · movement among entries of 3,162–10,000.

Register entry

Telegram ID-1001119319296
TypeChannel
Username@Matlab_Communication
Description👈 فایل‌های آموزشی متلب در حوزه: مخابرات،کنترل،پردازش سیگنال،عمران،هوافضا، ریاضی،فیزیک کانال۷۵۰۰ نفره متلب: @Matlab_Communication گروه ۶۵۰۰ نفره متلب: t.me/joinchat/EHEbrEA6SZ1bAjLdUj7bwA ادمین: @alimoradi_on تاسیس۹۵/۱۱/۱۱
CreatedBetween 1 February 2017 and 31 December 2019— estimated from Telegram’s id allocation, not measured. How this range is calculated.
First recorded6 August 2026
Last confirmed live11 August 2026
Measurements held5
Confirmed unchanged1 time, most recently 11 August 2026
On Telegramt.me/Matlab_Communication

Growth

6,8786,8836,880.56 August 2026 — 6,882 subscribers6 August 2026 — 6,882 subscribers6 August 2026 — 6,883 subscribers8 August 2026 — 6,881 subscribers11 August 2026 — 6,878 subscribers6 August 202611 August 2026
5 measurements spanning 6 days, net -4. Dots are measurements; the straight line between them is drawn to join them, not to claim we know the path taken in between — snapshots are recorded only when a count changes, so gaps mean “no change observed”, never “interpolated”. The vertical axis spans 6,877–6,884 and does not start at zero.
Measurement log — every subscribers count we have recorded
Measured (UTC)SubscribersChange
11 Aug 2026, 14:486,878-3
8 Aug 2026, 23:506,881-2
6 Aug 2026, 05:406,883+1
6 Aug 2026, 03:176,882no change
6 Aug 2026, 02:136,882first reading

Engagement

20 posts held, back to 26 March 2025the reader has not yet reached the start of this channel’s public history, so older posts may sit further back, unread. Read across 10 pagesof Telegram’s post history, 20 posts per page.

Nothing published in the last 30 days. ERR and ER are rolling 30-day measures, so there is nothing to compute — we hold 20 posts for this entry, the most recent from 27 February 2026. An engagement rate over an empty window would be a number about nothing.

What this channel posts

Photos
263
Videos
112
Links
163

Lifetime counters from Telegram’s own channel header, read 12 August 2026 — not the date at the top of this page, which is when the subscriber count was last read. A count marked was rounded by Telegram before we ever saw it — t.me prints these counters in full below 1,000 and to three significant figures above, so ≈142,000 means somewhere between 141,500 and 142,499.

Video runtime
5s
Average length
5s

Measured directly from 1 video with a duration reading, out of the posts we hold for this channel — not this channel’s whole posting history, only the sample this register has actually read. An exact reading to the second, taken from the post itself rather than from Telegram’s own rounded chrome, so it carries no mark.

Recent posts

27 Feb 2026, 13:02 UTC≈1,680 viewsread 12 August 2026
Photo

تصویر حاصل از اجرای دستورات پست قبلی

27 Feb 2026, 13:00 UTC≈1,640 viewsread 12 August 2026

💯به دست آوردن جمع دو تصویر، با دستور imadd در متلب clear all close all clc img_1 = imread('image_1.jpg'); imshow(img_1); img_2 = imread('image_2.jpg'); figure imshow(img_2); img_3 = imadd(img_1,img_2); figure imshow(img_3); 👇👇نتیجه خروجی دستورات👇👇

27 Feb 2026, 12:55 UTC≈1,250 viewsread 12 August 2026
Photo

💯رسم دو محور در نمودار با استفاده از مقیاس لگاریتمی x = logspace(0,3); y = exp(x); loglog(x,y,'-p') grid on

27 Feb 2026, 12:50 UTC≈1,130 viewsread 12 August 2026
Photo

x = linspace(0,10); yl1 = sin(x); yl2 = sin(x/2); yyaxis left plot(x,yl1,'linewidth',1.1) hold on plot(x,yl2,'linewidth',1.1) yr1 = x; yr2 = x.^2; yyaxis right plot(x,yr1,'linewidth',1.1) plot(x,yr2,'linewidth',1.1)

27 Feb 2026, 12:49 UTC866 viewsread 12 August 2026
Photo

💯 تابع yyaxis x = linspace(0,10); y = sin(2*x); z = sin(3*x).*exp(0.5*x); yyaxis left plot(x,y) yyaxis right plot(x,z)

27 Feb 2026, 12:46 UTC≈1,040 viewsread 12 August 2026
Photo

💯مثالی از دستور subplot در متلب x = -4:0.01:4; y_cos = cos(x); y_poly = 1 - x.^2./2 + x.^4./24; subplot(2,2,1); plot(x,y_cos,'linewidth',1.25); title('Subplot 1: Cosine') subplot(2,2,2); plot(x,y_poly,'r','linewidth',1.25); title('Subplot 2: Polynomial') subplot(2,2,[3,4]); plot(x,y_cos,'b',x,y_poly,'r','linewidth',1.25); title('Subplot 3 and 4: Both')

27 Feb 2026, 12:43 UTC773 viewsread 12 August 2026
Photo

💯دستور hold on در متلب x = 0:0.01:2*pi; y1 = sin(x); y2 = sin(2*x); plot(x,y1) hold on plot(x,y2) x = 0:0.01:2*pi; y1 = sin(x); y2 = sin(2*x); plot(x,y1,x,y2)

27 Feb 2026, 12:40 UTC≈1,010 viewsread 12 August 2026
Photo

💯افزودن عنوان به نمودار قطبی theta = 0:0.01:2*pi; r = sin(2*theta); polarplot(theta,r,'linewidth',1.2) title('polar diagram')

27 Feb 2026, 12:39 UTC745 viewsread 12 August 2026
Photo

💯ترسیم نمودار قطبی در متلب theta = 0:0.01:2*pi; r = sin(2*theta).*cos(2*theta); polarplot(theta,r)

27 Feb 2026, 12:37 UTC750 viewsread 12 August 2026
Photo

💯رسم نمودار دایره ای سه بعدی در متلب x = [12 48 31 27]; explode = [0 0 1 0]; pie3(x,explode) title('3d-Pie Chart in Matlab'); leg = {'part1','part2','part3','part4'}; legend(leg,'Location','southoutside','Orientation','horizontal')

27 Feb 2026, 12:34 UTC727 viewsread 12 August 2026
Photo

💯افزودن فهرست علائم (Legend) به نمودار دایره‌ای x = [4 5 1 7]; pie(x) title('Pie Chart in Matlab'); leg = {'part1','part2','part3','part4'}; legend(leg,'Location','southoutside','Orientation','horizontal')

27 Feb 2026, 12:32 UTC725 viewsread 12 August 2026
Photo

💯رسم نمودارهای دایره ای در کنارهم x = [89 14 19 87 88]; subplot(1,2,1); pie(x,{'Coal','Other','Nuclear','Petro','Gas'}) title('1995'); y = [92 27 30 58 90]; subplot(1,2,2); pie(y,{'Coal','Other','Nuclear','Petro','Gas'}) title('2005');

Showing the 12 most recent of 20 posts we hold for @Matlab_Communication. View and reaction counts are the latest single reading for each post, not a live figure, and a recent post is still accumulating both. A view count marked was rounded by Telegram before we ever saw it — t.me prints views in full below 1,000 and to three significant figures above, so ≈1,200,000 means somewhere between 1,150,000 and 1,249,999. Unmarked counts are exact. Text is reproduced from the public post preview and truncated for length.

Citation-graph rank

Citation-graph rank — 475,093 of 1,160,990entries in the measured graph. A weighted position computed from the forward and mention edges below — republished posts weigh more than named mentions — and recomputed periodically, over the whole graph. Published only as this ordinal position, never as a score: a position is a fact, and a score printed beside one channel’s name would read as a verdict this register does not make. The two counts beneath stay separate for the same reason mentions are never summed with forwards anywhere else on this page — a named-by count costs nothing to manufacture. The top 100 by this measure, or how it is computed.

Forward network

Republished by

Channels on the register that have forwarded this channel's posts into their own feed.

Built only from forwarded posts we have actually read, on both sides. Coverage is early and deliberately incomplete: a missing link means we have not read the post that would prove it, never that the relationship does not exist. Counts are distinct forwarded posts observed, so they only ever go up as we read more.

Mentions

Named by 1 registered channel — every channel on the register whose own posts have named this one, by its current username or any other username it currently holds, merged from two separately captured readings of the same fact so a namer caught by only one of them is not missed and a namer both caught is not counted twice. A username this channel has since dropped is not matched — that handle may belong to someone else now, and crediting today’s namer to yesterday’s owner would misattribute it.

Named by

Channels on the register whose posts name this channel's handle.

Names

Channels on the register whose handles appear in this channel's posts.

A mention is a weaker signal than a forward and is counted separately for that reason — naming a channel is not republishing it, and a handle in a post body is easy to place deliberately. The post counts beside each row below are distinct posts in which the handle appeared, from posts we have read on both sides — the “Named by N registered channels” figure above is a different count, of distinct NAMING CHANNELS rather than posts, and is not the sum of the rows under it.

Cite this entry

A live page changes as we take new readings, so a citation should name the measurement it is based on, not just the URL. The line below cites the subscriber count as measured 11 August 2026 — this entry's latest reading, not the date you are reading this.

“کانال تخصصی متلب” (@Matlab_Communication), 6,878 subscribers as measured 11 August 2026. Telegram Register, tgregister.com/channel/Matlab_Communication.

Full measurement history, CC BY 4.0. Every reading this register holds for this entry, not just the latest one, as a dated, downloadable record: CSV · JSON. Free to use with attribution to tgregister.com. Each file carries its own generation timestamp, which is the figure to cite for exactly when the data was retrieved.