답변 있음
How to convert time to a number?
use following code to get values as string array. time=input(prompt,'s'); split the output 'time' using split function with de...

4년 초과 전 | 0

문제를 풀었습니다


Finding Perfect Squares
Given a vector of numbers, return true if one of the numbers is a square of one of the other numbers. Otherwise return false. E...

4년 초과 전

질문


why 'colormap' did not change the color of my plots?
example: figure, plot(rand(5)) colormap hot above code did not change the color of plot.

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

2

답변

답변 있음
Extracting Slices From Slice Function
use the vector slicing to get one slice, Let V is the input volume. e.g S=V(:,:,1); use 'imshow' or 'imagesc' functions to vie...

4년 초과 전 | 0

| 수락됨

답변 있음
Help with Loops and Switch cases and Mean
here is the code Q=input('Would you like to enter a real number? (Yes or No) ','s'); n=[]; switch Q case 'Yes' ...

4년 초과 전 | 1

| 수락됨

답변 있음
How to shift a matrix
loop version: M=[ 1,2,3; 4,5,6; 7,8,9; ]; C=nan(3,4); for i=1:size(M,1) if mod(i,2)==1 C(i,2:end)=M...

4년 초과 전 | 1

| 수락됨

답변 있음
How to upload csv. files from multiple folders
to automate the file and folder access operations, do not use 'uigetfile' or 'uigetdir' functions. use 'dir' function to get th...

4년 초과 전 | 0

답변 있음
How to access data from a struct when the dot notated reference is passed as a char array?
To to get the field names of struct array, use 'fieldnames' function S.x=1; S.y=2; fields = fieldnames(S) then, to get the...

4년 초과 전 | 0

답변 있음
Question about import a .txt file into matlab
you can use 'fopen' and 'fread' functions. https://www.mathworks.com/help/matlab/ref/fread.html

4년 초과 전 | 0

답변 있음
wirte in excel sheet.
Delete the already created excel sheet. Change the last line of code to xlswrite('Book1.xlsx',q,'A1:BI1') if you want to stor...

4년 초과 전 | 0

답변 있음
Problem with data saving in a for loop
Best solution is: store the output variable 'vector' fom each iteration, into another variable(array, cell array). then at the ...

4년 초과 전 | 1

답변 있음
Problem with data saving in a for loop
you have to put the 'xlswrite' functions inside the for loop. also, for each iteration, change the sheet number or the 'xlRange...

4년 초과 전 | 1

| 수락됨

답변 있음
Create lookup table for cell array
Code example to convert cell array to table. A={1,2,3} B=array2table(A');

4년 초과 전 | 0

답변 있음
I need to make a square wave
see: https://in.mathworks.com/help/signal/examples/signal-smoothing.html https://in.mathworks.com/matlabcentral/answers/3205...

4년 초과 전 | 0

답변 있음
sir,i would like to implement pso (particle swarm optimization)in speech could you please help
particle swarm optimization code https://in.mathworks.com/matlabcentral/fileexchange/52857-particle-swarm-optimization-pso you...

4년 초과 전 | 0

답변 있음
Creating shapes in binary images
you can insert a shape in a image using the function 'insertShape'. e.g. RGB = insertShape(I,shape,position);

4년 초과 전 | 0

답변 있음
Hovering mouse over a variable suddenly doesn't show present value in R2015b?
I got this issue in matlab 2018a. I found that one of my variable name is 'eval'. 'eval' is an inbuild function name, so i chang...

대략 5년 전 | 3

문제를 풀었습니다


Make a checkerboard matrix
Given an integer n, make an n-by-n matrix made up of alternating ones and zeros as shown below. The a(1,1) should be 1. Examp...

5년 초과 전

문제를 풀었습니다


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

5년 초과 전

답변 있음
join close lines in one thicker
why matlab did not have functions to draw and burn basic shapes (line, triange,..) in image.i did not find any file exchange als...

5년 초과 전 | 0

채널


test channel
test data

5년 초과 전

문제를 풀었습니다


Getting logical indexes
This is a basic MATLAB operation. It is for instructional purposes. --- Logical indexing works like this. thresh = 4...

5년 초과 전

문제를 풀었습니다


Area of a circle
Given the radius x, y would be the area of a circle. Pi = 3.1416

5년 초과 전

문제를 풀었습니다


Remove any row in which a NaN appears
Given the matrix A, return B in which all the rows that have one or more <http://www.mathworks.com/help/techdoc/ref/nan.html NaN...

5년 초과 전

문제를 풀었습니다


Swap the first and last columns
Flip the outermost columns of matrix A, so that the first column becomes the last and the last column becomes the first. All oth...

5년 초과 전

문제를 풀었습니다


Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...

5년 초과 전

문제를 풀었습니다


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

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년 초과 전

문제를 풀었습니다


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

5년 초과 전

문제를 풀었습니다


Who Has the Most Change?
You have a matrix for which each row is a person and the columns represent the number of quarters, nickels, dimes, and pennies t...

5년 초과 전

더 보기