photo

Amritesh


Last seen: 2년 초과 전 2022년부터 활동

Followers: 0   Following: 0

통계

All
MATLAB Answers

0 질문
10 답변

Cody

0 문제
3 답안

순위
2,847
of 297,503

평판
20

참여
0 질문
10 답변

답변 채택
0.00%

획득한 표
0

순위
 of 20,449

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위
69,181
of 159,017

참여
0 문제
3 답안

점수
40

배지 수
1

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • Solver
  • Knowledgeable Level 2
  • First Answer

배지 보기

Feeds

보기 기준

답변 있음
Lat long Conversion from geodetic to ECEF
You can input your 4 coordinates in lla2ecef like p = lla2ecef([0 45 1000; 45 90 2000], 'WGS84'); Here, it is 2 coordinates(la...

2년 초과 전 | 0

| 수락됨

문제를 풀었습니다


Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...

2년 초과 전

문제를 풀었습니다


Calculate Amount of Cake Frosting
Given two input variables r and h, which stand for the radius and height of a cake, calculate the surface area of the cake you n...

2년 초과 전

문제를 풀었습니다


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

2년 초과 전

답변 있음
Custom excel formulas/functions in matlab
You can import your .xls file in variable dataset, then make changes to it and finally export that in .xls file. dataset = xlsr...

2년 초과 전 | 0

| 수락됨

답변 있음
How do I a offset x,y, z values from a table in matlab
You can set axes limits using xlim, ylim, zlim commands. Further you can follow, Documentation Link: https://in.mathworks.com/...

2년 초과 전 | 0

답변 있음
How to continue to loops
In for loop, index = startVal:endVal is the syntax. So, you can write for i = 1:length(depart_time) statements end Hope...

2년 초과 전 | 0

| 수락됨

답변 있음
How to add data to table?
You are initializing arrays in each iteration of for loop. Try following piece of code v0table = zeros; ...

2년 초과 전 | 0

답변 있음
How to extract a specific field value from struct
You can extract the NumObjects field using the name of struct/ after loading structName.mat file NumObjects = structName.NumObj...

2년 초과 전 | 0

답변 있음
How to do the calculation of these three different size matrices ?
First we have to create and initialise the arrays C = [100,150]; B = [1,1;0.923077,0.615385;1,1;1,1;1,1]; D1 = [0,1,1,0,0,1....

2년 초과 전 | 0

| 수락됨

답변 있음
How can I use custom membership functions in ANFIS?
If you have already made FIS, then use fis = anfis(trainingData,options) and in options use that custom FIS. If not then, first...

2년 초과 전 | 0

답변 있음
Joining two columns and exporting to excel
1. To merge two arrays into one table newTable = table(A,B); 2. To export newTable as .xlsx file writetable(newTable,'newTabl...

2년 초과 전 | 0

| 수락됨

답변 있음
can anybody explain me about how ETFE command works in matlab
etfe(data) estimates a transfer function of the form : y(t)=G(q)u(t)+v(t) where data contains time- or frequency-domain inpu...

2년 초과 전 | 0