photo

taimour sadiq


Last seen: 6개월 전 2020년부터 활동

Followers: 0   Following: 0

통계

All
MATLAB Answers

36 질문
2 답변

Cody

0 문제
78 답안

순위
22,497
of 300,392

평판
2

참여
36 질문
2 답변

답변 채택
91.67%

획득한 표
1

순위
 of 20,934

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위
8,399
of 168,373

참여
0 문제
78 답안

점수
800

배지 수
1

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • Thankful Level 4
  • Explorer
  • Solver

배지 보기

Feeds

보기 기준

질문


way to legend a data organized into colours in simple plot?
first_data = [[3 4 8 1];[3 6 4 9]]; % desired legend (first) & color (green) second_data = [[1 3 5];[3 2 7];[3 4 2]]; % desire...

8개월 전 | 답변 수: 1 | 0

1

답변

질문


How to load multiple mat file in sequence without natsortfiles?
if three files in my directory file1.mat file2.mat & file13.mat when i load it load in sequence file1.mat file13.mat file....

10개월 전 | 답변 수: 1 | 0

1

답변

질문


how to automate this manual code containing if else conditons?
i m creating a data based on values in variable seletion... if first value of selection is 1 it will pick data from Values cel...

1년 초과 전 | 답변 수: 2 | 0

2

답변

질문


How to save a multiple plots data with labels, title, legends and then plot again on uiaxes?
a = 0:0.01:2*pi; b = sin(a); c = cos(a);...

거의 2년 전 | 답변 수: 1 | 0

1

답변

질문


How to display a saved .fig file in uiaxes appdesinger?
i have some .fig plot save in my folder and i want to display them in UIAxes Appdesinger.. My code is Path = 'C:\Folder\'; My...

거의 2년 전 | 답변 수: 1 | 0

1

답변

질문


how to replace a specific line in a text file with user data?
clear Messege = 'Hello'; fileID = fopen('SampleFile.txt', 'rt'); textLine = fgetl(fileID); lineCounter = 1; while ischar(te...

대략 2년 전 | 답변 수: 1 | 0

1

답변

질문


How to auto save workspace variable with specific path and filename without Popup?
d = 'Sunday'; y = 2017; path = 'E:\Matlab\'; filenam = 'Data'; % uisave({'d','w'},path) % this works with path but ask for ...

대략 2년 전 | 답변 수: 1 | 0

1

답변

질문


How to convert specified time to GMT/UTC?
i want to convert datetime({'18-Oct-2023 17:40:00' '18-Oct-2023 18:00:00'},'TimeZone','+05:00') to GMT or UTC? required resu...

대략 2년 전 | 답변 수: 2 | 0

2

답변

질문


how two use winopen command with path assigned in a Variable?
winopen 'C:\My Folder' the above works fine, but i have path saved in a variable MyPath and want to use winopen command with p...

대략 2년 전 | 답변 수: 1 | 0

1

답변

질문


How to add different shaded Color to the back ground of a graph?
a = 0:0.1:2*pi; b = sin(a); plot(a,b) i have written a simple code of sin wave.. i want to add diffrent background colours ...

대략 2년 전 | 답변 수: 1 | 0

1

답변

질문


how to give range in xlsread using edit text field in app designer?
i was to read a coloumn from xlsx file which is simple to implement as following columnB = xlsread(myExample.xlsx,'B:B'); ...

거의 4년 전 | 답변 수: 1 | 0

1

답변

문제를 풀었습니다


kmph to mps
convert kilometer per hour to meter per second

대략 4년 전

문제를 풀었습니다


Volume of a box
Given a box with a length a, width b, and height c. Solve the volume of the box.

대략 4년 전

문제를 풀었습니다


Finding perimeter of a rectangle
A rectangle has a length of x centimeters and a width of w centimeters. Find the perimeter.

대략 4년 전

문제를 풀었습니다


Swap two numbers
Example Input: a = 10 b = 20 Output a = 20 b = 10

대략 4년 전

문제를 풀었습니다


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

대략 4년 전

문제를 풀었습니다


Area of an equilateral triangle
Calculate the area of an equilateral triangle of side x. <<https://i.imgur.com/jlZDHhq.png>> Image courtesy of <http://up...

대략 4년 전

문제를 풀었습니다


Sum of diagonal of a square matrix
If x = [1 2 4; 3 4 5; 5 6 7] then y should be the sum of the diagonals of the matrix y = 1 + 4 + 7 = 12

대략 4년 전

문제를 풀었습니다


Add two numbers
Calculate the sum of two numbers. Example input = [2 3] output = 5

대략 4년 전

문제를 풀었습니다


Back to basics 22 - Rotate a matrix
Covering some basic topics I haven't seen elsewhere on Cody. Rotate the input matrix 90 degrees counterclockwise (e.g. [1 2; ...

대략 4년 전

문제를 풀었습니다


Transpose
Write a MATLAB script in order to convert a random length row vector (v) into a column vector.

대략 4년 전

문제를 풀었습니다


Find the hypotenuse
Given a and b (the two sides of a right-triangle), find c, the hypotenuse.

대략 4년 전

문제를 풀었습니다


Rotate a Matrix by 90 degrees
Rotate a Matrix by 90 degrees Example: If the input is: X = 1 2 3 4 5 6 7 8 9 ...

대략 4년 전

문제를 풀었습니다


Divide by 4
Given the variable x as your input, divide it by four and put the result in y.

대략 4년 전

문제를 풀었습니다


Multiply a column by a row
* Given a column vector C and and a row vector R. * Output a matrix M. * Every column of M equals to C multiplied by correspon...

대략 4년 전

문제를 풀었습니다


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.

대략 4년 전

문제를 풀었습니다


Summation of array
Given an array, Find the sum of all of the elements in it Examples: Input x = [1 2 3 5; 4 5 6 7]; Output y is 33

대략 4년 전

문제를 풀었습니다


Simple equation: Annual salary
Given an hourly wage, compute an annual salary

대략 4년 전

문제를 풀었습니다


Length of the hypotenuse
Given short sides of lengths a and b, calculate the length c of the hypotenuse of the right-angled triangle. <<https://i.imgu...

대략 4년 전

문제를 풀었습니다


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

대략 4년 전

더 보기