photo

Vishnu priya v


CSIR-NAL

Last seen: 9 months 前 自 2022 起处于活动状态

Followers: 0   Following: 0

Spoken Languages:
Telugu

统计学

All
MATLAB Answers

3 个提问
2 个回答

Cody

0 个问题
25 个答案

排名
263,791
of 300,759

声誉
0

贡献数
3 个提问
2 个回答

回答接受率
0.0%

收到投票数
0

排名
 of 21,081

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名
17,580
of 170,900

贡献数
0 个问题
25 个答案

评分
317

徽章数量
2

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Community Group Solver
  • Solver
  • First Answer

查看徽章

Feeds

排序方式:

已解决


Calculate the Number of Sign Changes in a Row Vector (No Element Is Zero)
For a row vector: V=[7 1 2 -3] there is one sign change (from 2 to -3). So, the function you write must return N=1. F...

9 months 前

已解决


Symmetry of vector
Determine whether the vector is symmetric or not (vector could be even or odd in length). For example: x = [1 2 3 3 2 1] is s...

9 months 前

已解决


Getting the indices from a vector
This is a basic MATLAB operation. It is for instructional purposes. --- You may already know how to find the logical indices o...

12 months 前

已解决


String Array Basics, Part 1: Convert Cell Array to String Array; No Missing Values
<http://www.mathworks.com/help/matlab/characters-and-strings.html String array> and cell array are two types of containers for s...

12 months 前

提问


How to read/plot ".ive" file in matlab?
I have an ".ive" file which has 3D model. I want to open it in matlab. Can anyone please tell me how to do it.

3 years 前 | 1 个回答 | 0

1

个回答

提问


I am getting an error
Error using radarChannel Expected EMISS{1}.OriginPosition(3) to be an array with all of the values <= 0. Error in fusion.in...

3 years 前 | 0 个回答 | 0

0

个回答

已解决


Cell joiner
You are given a cell array of strings and a string delimiter. You need to produce one string which is composed of each string fr...

3 years 前

已解决


Return area of square
Side of square=input=a Area=output=b

3 years 前

已解决


Maximum value in a matrix
Find the maximum value in the given matrix. For example, if A = [1 2 3; 4 7 8; 0 9 1]; then the answer is 9.

3 years 前

已解决


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

3 years 前

已解决


Matlab Basics - Rounding III
Write a script to round a large number to the nearest 10,000 e.g. x = 12,358,466,243 --> y = 12,358,470,000

3 years 前

已解决


Matlab Basics - Rounding II
Write a script to round a variable x to 3 decimal places: e.g. x = 2.3456 --> y = 2.346

3 years 前

已解决


MATLAB Basic: rounding IV
Do rounding towards plus infinity. Example: -8.8, answer -8 +8.1 answer 9 +8.50 answer 9

3 years 前

已解决


MATLAB Basic: rounding III
Do rounding towards minus infinity. Example: -8.8, answer -9 +8.1 answer 8 +8.50 answer 8

3 years 前

已解决


MATLAB Basic: rounding II
Do rounding nearest integer. Example: -8.8, answer -9 +8.1 answer 8 +8.50 answer 9

3 years 前

已解决


MATLAB Basic: rounding
Do rounding near to zero Example: -8.8, answer -8 +8.1 answer 8

3 years 前

已解决


Inner product of two vectors
Find the inner product of two vectors.

3 years 前

已解决


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

3 years 前

已解决


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 ...

3 years 前

已解决


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

3 years 前

已解决


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 ...

3 years 前

已解决


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

3 years 前

已解决


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

3 years 前

已解决


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

3 years 前

已解决


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

3 years 前

已解决


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...

3 years 前

已解决


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

3 years 前

已回答
UITable: Detect finishing of GUI Update
You can try using "waitbar".

3 years 前 | 0

已回答
Uicontrol callback stops working in new session
In the Start-up Function, you can write label_visibility(hObject); you can try doing this.

3 years 前 | 0

提问


specify membership function parameters as a numeric vector
Hello everyone, I am using fuzzy network toolbox, for "addMF'' command I am getting an error like"specify membership function pa...

3 years 前 | 0 个回答 | 0

0

个回答