문제를 풀었습니다


3D Plots and Colorbars
Use the matrices X, Y, and Z provided in the function template to create a surface plot. Add a colorbar to the surface plot and ...

거의 4년 전

문제를 풀었습니다


Find the density of non-zero values

거의 4년 전

문제를 풀었습니다


non-repitition of numbers in a vector

거의 4년 전

문제를 풀었습니다


Find out characteristics equation of given matrix.
Find out characteristics equation of given matrix. A=[0 2; 1 8] then char. eq is s^2-8*s-2=0 and answer should be [1 -8 -2]

거의 4년 전

문제를 풀었습니다


Simple Interest : Calculate Present Value
Theorem : Simple Interest where; F : Future Value P : Present Value r : Annual simple interest rate (decimal) t : Time in...

거의 4년 전

문제를 풀었습니다


Voltage in a lamp
A lamp is measured to have a resistance of R ohms when it operates at a power of P Watts. What is the voltage (in volts) being a...

거의 4년 전

문제를 풀었습니다


Find supported functions
Given a function name, return true if that function is supported by the toolboxes that are installed with MATLAB on this machine...

거의 4년 전

문제를 풀었습니다


Plot Line Specifications
Create a line plot for function cos(x) where x is a vector of linearly spaced values going from 0 to input N with an increment o...

거의 4년 전

문제를 풀었습니다


Create a figure and plot data
Given two data vectors (x,y), open a new figure and plot the data. Return the figure handle.

거의 4년 전

문제를 풀었습니다


Plotting Practice
Plot cos(x) vs x as shown in the figure below. Include the appropriate title, x-label, and y-label. Note, it is case sensitive. ...

거의 4년 전

답변 있음
行列から0~0.01となる要素を抽出して、別の行列として定義したいです。
rssimW = [0.0016,0.3981,0.0016,0.0016,0.0016,0.0016,0.0016,0.0016,0.0025,0.0016,0.0016,0.0025,0.0016,0.0016,0.0016,0.0025,0.0025...

거의 4년 전 | 1

| 수락됨

문제를 풀었습니다


Tabuada
Dado um inteiro N, retorne um vetor contendo a tabuada de N de 1 a 10; ex: Tabuada(5) = [5, 10, 15, 20, 25, 30, 35, 40, 45, 50...

거의 4년 전

문제를 풀었습니다


Multiplos 7
Escreva um programa que mostre todos os números entre 5 e 100 que são divisíveis por 7, mas não são múltiplos de 5. Os números o...

거의 4년 전

문제를 풀었습니다


Area under the curve
Compute area under the curve specified by points stored in y, where y is in range (0,inf) and x time step is 1. note: please r...

거의 4년 전

문제를 풀었습니다


Intrication de deux vecteurs
Ecrire une fonction "intric" qui prend en entrée un vecteur ligne v1 et un vecteur ligne v2 et renvoie le vecteur ligne vres don...

거의 4년 전

문제를 풀었습니다


Définir une fonction creneau
Definr une fonction "creneau" qui prend en entrée un vecteur et renvoie la valeur 1 pour chaque élément positif du vecteur et...

거의 4년 전

답변 있음
Sort Matrix according to another Vector
A = [1 3 4 7 2]'; B_origin = [3 4 7 1 2; 1 2 3 4 5; 6 7 8 9 10]'; % Since B first column has the same values as A, but in dif...

거의 4년 전 | 1

문제를 풀었습니다


Upper triangular matrix
Create a function to retrieve the upper triangular matrix of a matrix (without using tril). The matrix will always be square. ...

거의 4년 전

답변 있음
App Designer で2つのドロップダウンリストを連動したい
App Designer の複数のコンポーネントに 1 つのコールバックを使用する - MATLAB & Simulink - MathWorks 日本 可能です。具体的にはどのように連動させるのでしょうか? 2つのドロップダウンリストの項目数が同一で...

거의 4년 전 | 1

| 수락됨

문제를 풀었습니다


compter le nombre de zéros dans une matrice
écrire une fonction count_zeros qui prend en entrée une matrice M et détermine le nombre de zéros dans une matrice

거의 4년 전

답변 있음
MATLABでフォルダ内の全てDICOM画像のヘッダー情報を抽出する方法
DICOM イメージを含むイメージ データストアの作成 - MATLAB & Simulink - MathWorks 日本 先日の回答の応用で、関数 dicominfo のハンドルとして読み取り関数を指定して、imageDatastore を作成します...

거의 4년 전 | 2

| 수락됨

문제를 풀었습니다


Clamper Function
Create a function that emulates a clamper circuit Given sin wave, t and the constant value for clamping

거의 4년 전

답변 있음
MATLABでフォルダ内の全てのDICOM画像を読み込む方法
DICOM イメージを含むイメージ データストアの作成 - MATLAB & Simulink - MathWorks 日本 本回答の実行には、Image Processing Toolbox が必要です。 dicomDir = uigetdir(pw...

거의 4년 전 | 1

| 수락됨

답변 있음
Stateflowにおいて、mファイルで定義されている定数を読み込むにはどうすればよいか
Simulink および MATLAB ワークスペースとのパラメーターの共有 - MATLAB & Simulink - MathWorks 日本 チャート等において変数名を書くと、その変数名がモデルエクスプローラにも登場します。ここで Statefl...

거의 4년 전 | 1

| 수락됨

문제를 풀었습니다


Create an arrow matrix
An arrow matrix is a square matrix that contains ones on the diagonal, the last column, and last row. ...

거의 4년 전

문제를 풀었습니다


Find the minimum of the column-maximums of a matrix
Given a matrix A, find the maximum value of each column, then return the smallest of those maximum values (ie return the minimum...

거의 4년 전

문제를 풀었습니다


Calculate the mean of each half of a matrix
Given a matrix with an even number of columns, n, return a 1-by-2 row vector where the first element is the mean of all the elem...

거의 4년 전

문제를 풀었습니다


Find Closest Constant
Given a number x, return the value that is closest to x from this list of constants: 0, 1, , e, , (also known as ). For exampl...

거의 4년 전

문제를 풀었습니다


Matrix Quadrants
Write a function that takes N as the input, and outputs a matrix whose upper-left (NxN) quadrant contains all ones, the lower-ri...

거의 4년 전

문제를 풀었습니다


Sub-Diagonal Sum
Given a (m x n) matrix and a value r {1,-1}, change every element to the sum of the diagonal led by the element. r=1 > regular ...

거의 4년 전

더 보기