Community Profile

photo

Rasul Khan


Last seen: 거의 3년 전 2020년부터 활동

Followers: 0   Following: 0

통계

  • Knowledgeable Level 2
  • First Answer

배지 보기

Feeds

보기 기준

답변 있음
Categorizing array elements based on percentage
You can have the four categories separated this way. a = 1 : 20; odd_ind = a(1 : 2 : end); category1 = odd_ind( (1 : end) <= ...

거의 4년 전 | 0

| 수락됨

답변 있음
Please help me with this as soon as possible
wab =733;r=0.0405;L=0.13; theta = 0:0.1:2*pi; x = (r*sin(theta))/L; phi = asin(x); a = wab*r*sin(theta); b = L*sin(phi); w...

거의 4년 전 | 0

답변 있음
lim x arrow 4 x^2+3x/x^2-x-12
You have to declare x as a symbol. Try it this way syms x; f = (x^2 + 3 * x) / (x ^ 2 - x - 12); % your function result = lim...

거의 4년 전 | 0

답변 있음
How to make a structure unique?
You can achieve it using this script. m = []; for i = 1 : numel(pop) m = [m ; pop(i).x]; end [~ , ia , ~] = unique(m , ...

거의 4년 전 | 1

| 수락됨

답변 있음
Find a row with all elements satisfying a condition
You can achieve it with a loop. The required matrix will be stored in res res = [] for i = 1 : size(mat , 1) if ~any( mat...

거의 4년 전 | 1

| 수락됨

답변 있음
Dimensions of matrices being concatenated are not consistent.
If you take a close look you can see there are 3 rows in Q with 8 elements in the first row and 4 on subsequent rows. But MATLAB...

거의 4년 전 | 1

답변 있음
list of the names of the variables in a column
The output of tb(: , 1) is a cell array with all the variables. You can run this script. It will store the result in a res varia...

거의 4년 전 | 0

| 수락됨

답변 있음
Mean returns Inf value why?
It's because there is atleast one Inf value in each row. You can check with this script for i = 1 : 101 if any(isinf(Mag1_...

거의 4년 전 | 0

| 수락됨

답변 있음
How to save System Composer Model(.slx) as Microsoft Visio(.vsd)
To build a System Composer model, you can import information about components, ports, and connections in a predefined format usi...

거의 4년 전 | 1

답변 있음
systemcomposer.importmodel Error Log location
The function signature of systemcomposer.importModel is function [archModel,custIdUUIDTableContainer, importLog, errorLog] = im...

거의 4년 전 | 0

| 수락됨