Publié le


Looking Back: 2016 in Review
Wow...2016. What a long, strange trip it's been.But it's over, and once again, without further ado: we close out the...

plus de 9 ans il y a

Thumbnail

Publié le


Encode images as Base64
Jiro‘s pick this week is Base64 Image Encoder by Michael Katz. Some of you may remember Mike from when he was one of the...

plus de 9 ans il y a

Thumbnail

Publié le


Glob File Searching in MATLAB
Contents Glob File Searching in MATLAB What’s a Glob? How does this differ from using the DIR function in MATLAB? Enhance...

plus de 9 ans il y a

Thumbnail

Réponse apportée
How to find the latest peak value of a curve.
[pk,loc] = findpeaks(P(end:-1:1),'NPeaks',1); [U(end-loc+1) pk]

plus de 9 ans il y a | 0

| A accepté

Réponse apportée
ウェブ文字エンコード
少し分かりづらいんですが、 <https://jp.mathworks.com/help/matlab/ref/sprintf.html#input_argument_formatSpec |sprintf|> で特殊文字を表示する書式を使えば変換できます...

plus de 9 ans il y a | 4

| A accepté

Publié le


Hour Glass
Sean‘s pick this week is hourglass by Tillmann Stuebler. Do you ever present with MATLAB? As an application engineer, this...

plus de 9 ans il y a

Thumbnail

Réponse apportée
How can I acquire frames from a live video stream, acquire the frames, then use the frames to recreate the live video stream?
One such example. v = VideoReader('xylophone.mp4'); % Display first frame firstFrame = readFrame(v); subplot(1...

plus de 9 ans il y a | 0

Réponse apportée
Label bars of a histogram
A number of ways, but here is one: label = arrayfun(@(x,y) sprintf('%g - %g',x,y), ... binranges(1:end-1), binranges(...

plus de 9 ans il y a | 1

Réponse apportée
How to get the gray level co-occurrence matrix feature which is energy, entropy and contrast of the image using GUI?
From Image Processing Toolbox, <https://www.mathworks.com/help/images/ref/graycomatrix.html |graycomatrix|> and <https://www.mat...

plus de 9 ans il y a | 0

| A accepté

Réponse apportée
Controlling the spacing of markers in fplot (symbolic variable)
How about converting your symbolic variables to numeric just for plotting? Then all those suggestions would work. Moreover, i...

plus de 9 ans il y a | 4

Réponse apportée
How to remove subplot grey space between images
One way is to use |subplot| or |axes| to manually specify a tight region. In your code, change the |subplot| line to subplo...

plus de 9 ans il y a | 3

| A accepté

Réponse apportée
Problem using cell2mat on cell arrays from textscan
If they are numbers, why don't you read them in as a numeric (e.g. %f)? data = textscan(fid,'%f %f','Delimiter',','); Th...

plus de 9 ans il y a | 0

| A accepté

Réponse apportée
Storing values from a nested FOR loop (can't get how to save the output into a matrix)
Your for loop goes from 1 to 70, so it looks like you're trying to generate 70 columns of data, not 40. Aside from that, you ...

plus de 9 ans il y a | 0

| A accepté

Publié le


Quickly create an interactive data viewer with tabbed figures
Jiro‘s pick this week is Tabbed Figure by Curtis. Have you ever wanted to visualize a bunch of data so that you can...

plus de 9 ans il y a

Thumbnail

Publié le


Creating and Populating a Simulink Dataset from Simulink model
Richard is Consulting Engineer at MathWorks focused on the Embedded Coder product for code generation, primarily in the...

plus de 9 ans il y a

Thumbnail

Publié le


MATLAB File Association Fix
Sean‘s pick this week is MATLAB File Association Fix by Patrik Forssén. Have you ever gone to open a MATLAB file of any...

plus de 9 ans il y a

Thumbnail

Réponse apportée
Parforを用いてSimulink モデルを並列に実行する方法
これは、 |parfor| 内でループの外の変数が見えていないから起きます。一番簡単な対処法はループ内のコードを一つの関数としてまとめる方法です。 実際に |dsim| のモデル内でどの変数が必要か分かりませんが、仮に |A|, |fsin|, |T...

plus de 9 ans il y a | 4

| A accepté

Réponse apportée
クラス フォルダーを利用してメンバ関数を別ファイルに作成した際に、TAB補完によるメンバ変数、メンバ関数を表示させる方法について
操作1に関しては、ドット表記の場合は別ファイルのメソッドに飛んでくれないみたいですが、関数表記だと飛んでくれました。 this.func1() % 飛ばない func1(this) % 飛ぶ 操作2に関してはでき無そうなので、対...

plus de 9 ans il y a | 2

| A accepté

Publié le


R2016b Features: MarkerIndices, jsonencode, jsondecode
Jiro‘s picks this week are two of the many new features of R2016b: MarkerIndices property for specifying marker locations...

plus de 9 ans il y a

Thumbnail

A soumis


Demo files for 2016 MATLAB Expo Japan "Object Oriented Programming" session (B5)
Demo files used for the 2016 MATLAB Expo Japan Session B5

plus de 9 ans il y a | 1 téléchargement |

5.0 / 5
Thumbnail

Publié le


Deep Learning for Image Classification
Deep Learning for Image Classification Avi’s pick of the week is the Deep Learning Toolbox Model for AlexNet Network, by...

plus de 9 ans il y a

Thumbnail

Publié le


2016 MATLAB and Simulink Hardware Challenge
Jiro‘s picks this week are the top 3 entries* from the 2016 MATLAB and Simulink Hardware Challenge. Kinect and IMU data to...

plus de 9 ans il y a

Thumbnail

Réponse apportée
how to get a line information after applying the houghlines
In your example, the variable |lines| has the information about the straight lines. Double-click the variable in the Workspace. ...

plus de 9 ans il y a | 0

| A accepté

Réponse apportée
Simulinkでベ​クトル信号の要素を昇順、降順で並​び替えるにはどうすれ​ばよいですか?
<https://jp.mathworks.com/products/dsp-system/ DSP System Toolbox> があれば <http://jp.mathworks.com/help/dsp/ref/sort.html Sort> ブロ...

plus de 9 ans il y a | 6

| A accepté

Réponse apportée
How link axes horizontally in subplots?
I think what you want is this. Note the indexing using inside |linkaxes|. f = figure(); bFig(1:10) = axes(f); for k =...

plus de 9 ans il y a | 2

| A accepté

Réponse apportée
グレースケールの3次元マッピング
グレースケール値を3次元の散布図で可視化したいということでしょうか。 im = imread('peppers.png'); imG = rgb2gray(im); % グレースケールに変換 imD = im2double(...

plus de 9 ans il y a | 3

Publié le


Write Your Figures to Excel
Sean‘s pick this week is xlswritefig by Michelle Hirsch. One of my colleagues approached me earlier this week and asked me...

plus de 9 ans il y a

Thumbnail

Publié le


Blackjack!
Brett's Pick this week is blackjack, by Cleve Moler.Last night, while preparing for a seminar on machine learning I found...

plus de 9 ans il y a

Thumbnail

Publié le


Data Acquisition Tool
Sean's pick this week is Data Acquisition Tool by Isaac Noh. Data Acquisition Hardware ...

plus de 9 ans il y a

Thumbnail

Publié le


Feel the Music
Jiro's pick this week is Music Visualizer by NathanM.A fun, cool entry for this week. It's like I can feel the... read...

plus de 9 ans il y a

Thumbnail

Charger plus