답변 있음
Adaptive filter output shows a offset in frequency domain?
Try this .. % Load and preprocess your EMI measurement data % Assuming you have x(k) as background noise and d(k) as the signa...

2년 초과 전 | 0

답변 있음
Why do I get this error while connecting the Arduino Mega2560 to MATLAB?
The error "Internal error: The initialization of the server code is incorrect" could be caused by various factors. Troubleshoo...

2년 초과 전 | 0

제출됨


Identify lamps ON and to identify the frame in Video
There are only two lamps and need to identify the frame number when each lamp is on and which lamp (lamp number) is on

2년 초과 전 | 다운로드 수: 1 |

0.0 / 5

답변 있음
Difference between 2 images?
% Read the video file videoFile = 'path/to/your/video.mp4'; videoObj = VideoReader(videoFile); % Read the first frame where...

2년 초과 전 | 2

답변 있음
How to delete all strings with NaN in Struct
Based on your description, it seems like you have a struct variable osmScenarios, and within it, there is a field trafficLight t...

2년 초과 전 | 2

| 수락됨

답변 있음
How to estimate how long the inversion process will take?
This is the optimized the code by removing unnecessary variables and setting their initial values to zero directly in the symbol...

2년 초과 전 | 0

답변 있음
How to mute the notification of the official function like this?
Yes, you can suppress the output of the quadprog function and avoid displaying the notifications in the command window. MATLAB p...

2년 초과 전 | 0

| 수락됨

답변 있음
I want to isocline induced step function
To simulate the isocline-induced step function differential equations, we can use MATLAB's ODE solver `ode45`. First define th...

2년 초과 전 | 0

답변 있음
how to improve quality of exportapp?
MATLAB's App Designer does not provide a built-in option to directly control the resolution of the exported image. This is becau...

2년 초과 전 | 0

답변 있음
Can you create a CNN with two images as inputs and a 6x1 array as an output?
This is sample code.. Try it. % Load your dataset and ground truth data here % Replace 'input_images' and 'ground_truth' with ...

2년 초과 전 | 0

답변 있음
How to reference a model in matlab?
Model referencing in Simulink allows you to modularize your system by breaking it into separate models that can be reused and re...

2년 초과 전 | 0

답변 있음
Algorithm for edge connectivity of a digraph?
To compute the edge connectivity of a directed graph (digraph) in MATLAB, you can use the built-in function "edgeconncomp". This...

2년 초과 전 | 0

답변 있음
show the confusion metrics as figure?
After Evaluating semantic segmentation results, add the below code: % Get the confusion matrix from the 'metrics' object confu...

2년 초과 전 | 0

| 수락됨

문제를 풀었습니다


Find the Best Hotels
Given three input variables: hotels - a list of hotel names ratings - their ratings in a city cutoff - the rating at which yo...

2년 초과 전

문제를 풀었습니다


Crop an Image
A grayscale image is represented as a matrix in MATLAB. Each matrix element represents a pixel in the image. An element value re...

2년 초과 전

문제를 풀었습니다


Plot Damped Sinusoid
Given two vectors |t| and |y|, make a plot containing a blue ( |b| ) dashed ( |--| ) line of |y| versus |t|. Mark the minimum...

2년 초과 전

문제를 풀었습니다


Calculate a Damped Sinusoid
The equation of a damped sinusoid can be written as |y = A.ⅇ^(-λt)*cos(2πft)| where |A|, |λ|, and |f| ...

2년 초과 전

문제를 풀었습니다


Solve a System of Linear Equations
Example: If a system of linear equations in x₁ and x₂ is: 2x₁ + x₂ = 2 x₁ - 4 x₂ = 3 Then the coefficient matrix (A) is: 2 ...

2년 초과 전

답변 있음
Variable input ODE solution
Here It is .. clear; close all; clc; % (Please insert the rest of your code for jds = 1:length(ds_matrix) for jtheta...

2년 초과 전 | 0

답변 있음
How to fix table variable related error?
Here It is ... clc; clear all; close all; data = readtable('sample.csv'); X = data(:, 1:end); % Get the current vari...

2년 초과 전 | 0

| 수락됨

답변 있음
How to represent (0:10:35) as 00:00 00:10, ... in Yticklabel?
In your code, you are using set(gca, 'YTick', ...) to set the y-axis ticks, which are actually numerical values from 0 to 0.51 (...

2년 초과 전 | 0

| 수락됨

답변 있음
Train a Feedforward NN with Error Weights for the performance function
Yes, you can set different error weights for your Feedforward Neural Network training process. The error weight values can be sp...

2년 초과 전 | 0

문제를 풀었습니다


Verify Law of Large Numbers
If a large number of fair N-sided dice are rolled, the average of the simulated rolls is likely to be close to the mean of 1,2,....

2년 초과 전

문제를 풀었습니다


Find the Oldest Person in a Room
Given two input vectors: * |name| - user last names * |age| - corresponding age of the person Return the name of the ol...

2년 초과 전

문제를 풀었습니다


Convert from Fahrenheit to Celsius
Given an input vector F containing temperature values in Fahrenheit, return an output vector C that contains the values in Celsi...

2년 초과 전

문제를 풀었습니다


There are 10 types of people in the world
Those who know binary, and those who don't. The number 2015 is a palindrome in binary (11111011111 to be exact) Given a year...

2년 초과 전

문제를 풀었습니다


Converting binary to decimals
Convert binary to decimals. Example: 010111 = 23. 110000 = 48.

2년 초과 전

문제를 풀었습니다


Relative ratio of "1" in binary number
Input(n) is positive integer number Output(r) is (number of "1" in binary input) / (number of bits). Example: * n=0; r=...

2년 초과 전

문제를 풀었습니다


Bit Reversal
Given an unsigned integer _x_, convert it to binary with _n_ bits, reverse the order of the bits, and convert it back to an inte...

2년 초과 전

답변 있음
surf plot is required
To create the surface plot for the given code, you can use the MATLAB 'surf' function inside the loop. However, you need to be c...

2년 초과 전 | 0

더 보기