解決済み


Is my wife right?
Regardless of input, output the string 'yes'.

5年弱 前

解決済み


Vector creation
Create a vector using square brackets going from 1 to the given value x in steps on 1. Hint: use increment.

5年弱 前

解決済み


Doubling elements in a vector
Given the vector A, return B in which all numbers in A are doubling. So for: A = [ 1 5 8 ] then B = [ 1 1 5 ...

5年弱 前

解決済み


Create a vector
Create a vector from 0 to n by intervals of 2.

5年弱 前

解決済み


Flip the vector from right to left
Flip the vector from right to left. Examples x=[1:5], then y=[5 4 3 2 1] x=[1 4 6], then y=[6 4 1]; Request not ...

5年弱 前

解決済み


Whether the input is vector?
Given the input x, return 1 if x is vector or else 0.

5年弱 前

解決済み


Find max
Find the maximum value of a given vector or matrix.

5年弱 前

解決済み


Get the length of a given vector
Given a vector x, the output y should equal the length of x.

5年弱 前

解決済み


inner product of two vectors
inner product of two vectors

5年弱 前

解決済み


Arrange Vector in descending order
If x=[0,3,4,2,1] then y=[4,3,2,1,0]

5年弱 前

解決済み


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

5年弱 前

回答済み
how i can change the explicit code to implicit code?
function [T,x] = example(c,k,p,dt,dx) alpha=k/(p*c); lamda=alpha*dt/dx^2; for n=1:4 T(n,1)=100; T(n,6)=25; end fo...

5年弱 前 | 1

回答済み
how to find local minima of a graph like shown in the figure?
Read findpeaks

5年弱 前 | 1

解決済み


Alphabetize by last name
Given a list of names in a cell array, sort the list by the last name. So if list = {'Barney Google','Snuffy Smith','Dagwood ...

5年弱 前

解決済み


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

5年弱 前

解決済み


Add two numbers
Given a and b, return the sum a+b in c.

5年弱 前

回答済み
find largest magnitude in array
A=[-0.1;1;-5;-0.8;-0.4]; tto=find(abs(A) == max(abs(A))) tt=find(abs(A) ~= max(abs(A)))

5年弱 前 | 0

| 採用済み

回答済み
how can i use several loops
I will try to explain as best as I can. To do that, I will give values to the variables. nt = 4, nx = 5: for k=1:3 ( = [1,2,3...

5年弱 前 | 0

回答済み
Correlation between two row matrices
Like that, each value of "a" is correlated to each value of "b", but applying the formula of the correlation, the correlation o...

5年弱 前 | 2

| 採用済み

回答済み
Using function simple equation doesn't work
Next time, I ask you to add more info so people can help you easily and not only with a photo. The problem here is the block f...

5年弱 前 | 0

| 採用済み

回答済み
How to display multiple images (non indexed images) with different sizes in a row?
I would use moon1, moon2 and moon3 as 3 images that can be different and with different size, but I will obtain them as moon1 =...

5年弱 前 | 0

回答済み
Adding Dot For Linspace
You have two possibilities here: In the text file, you replace * by .* and / by ./ in all the document (there is an option in t...

5年弱 前 | 0

回答済み
How can I simplify my expression?
It only needs more time to simplify: I'm doing: simplify(4.0475406620140304336968591117778*Ua + 0.048633477607650367346402317...

5年弱 前 | 1

| 採用済み

回答済み
how to plot decaying exponential
Congratulation! You have your algorithm almost working, but you are using vector when you should be using scalars (As you have y...

5年弱 前 | 0

| 採用済み

回答済み
How do I add numbers in a cell to another cell?
A{1}(B{1}==X) = B{1}(B{1}==X)

5年弱 前 | 0

回答済み
Improving the speed!
I love this kind of problems. First of all, Matlab comes with a debugger that tell you in which part you are losing your time (I...

5年弱 前 | 1

| 採用済み

回答済み
What does a value of performance in a neural network indicate?
If you look in the documentation of perform function (https://www.mathworks.com/help/deeplearning/ref/perform.html) it tells you...

5年弱 前 | 0

| 採用済み

回答済み
Multiple Input Single Output Segmentation using Deep Learning
This question was asked here: https://www.mathworks.com/matlabcentral/answers/369328-how-to-use-multiple-input-layers-in-dag-net...

5年弱 前 | 1

| 採用済み

回答済み
How to convert the color image into binary sequence?
I suppose you have a filter of color of [100,150,30], so to convert the image M you can do: sol = squeeze( M(:,:,1) > 100 & M(:...

約5年 前 | 1

質問


Where do I have to tell if I found some error in the Help section?
I just have found that the translation of https://es.mathworks.com/help/signal/correlation-and-convolution.html is in korean in ...

5年以上 前 | 1 件の回答 | 0

1

回答

さらに読み込む