回答済み
Input txt. file of complex numbers
As far as I can tell you can use the readmatrix function to read the file if you use the 'NumHeaderLines' option for the import....

2年以上 前 | 0

回答済み
Basic calculator not working in app designer.
I think that as the error message states the .Value field of the EditField must be a string rather than a number. This could pr...

3年弱 前 | 0

| 採用済み

回答済み
how to plot a function
Another way to do it would be using the fplot by which you don't need a for loop and to define the number of points in your x-ax...

3年弱 前 | 0

回答済み
How can I make a sentence in Alphabetical order
I think a minor modification of your function like this function[output] = sentenceSort(x) %%%The input x is a string array o...

3年弱 前 | 0

| 採用済み

回答済み
I have to generate an array of 10x1 in an ascending order. With a condition that the two consecutive elements should have a difference between 1 to 8
This is not a super elegant solution but I think it'll do the trick for you numbers = zeros(10,1); numbers(1) = randi(8,1); %I...

3年以上 前 | 0

回答済み
Switch-case function problem
If you wish to solve the problem using a switch/case sentence you should omit the == as that is assumed for the case. Furthermor...

3年以上 前 | 1

質問


Reading settings for an app from text file
I have designed an app for which I need to store some settings in a text file as shown in the attached example_file.ini. In my ...

3年以上 前 | 1 件の回答 | 0

1

回答

回答済み
Linear Interpolation to eleminate zero values
I'm not sure I fully understand your issue, but this may be a solution (or something to point you in the direction) y = [1 2 1 ...

3年以上 前 | 2

| 採用済み

回答済み
How to obtain moving average smoothing of daily time series?
I think the function you need is filter - but that requires a numeric input (for which I would use the datenum function) timese...

3年以上 前 | 1

回答済み
Linear regression on training set
the five t values that will correspond to the randomly chosen values are used by using the idx vector similarly to what you do f...

3年以上 前 | 1

回答済み
recursive function to check a Palindrome
There is no need to make it recursive or to look for multiple numel's function out = palindrom(x) x = upper(char(varargin{...

3年以上 前 | 0

回答済み
Easy and fast way to export into excel file from loop
You should concatenate your E variable before writing the excelfile as xlswrite creates a file rather than edits a file. As an a...

3年以上 前 | 0

| 採用済み

回答済み
Read from text file (vw9.out)
You can read it using fid = fopen('vw9.out','r'); fcon = textscan(fid,'%s'); but if all you want to do is to import the matri...

3年以上 前 | 0

| 採用済み

回答済み
Plotting the 4th value from a data
Hi Abdul I certainly think so. I've define a data vector that's sinus of numbers from -10 to 10 in 111 steps - but use your own...

3年以上 前 | 0

回答済み
Adding a Title to imwrite Command
You have to add the title to your figure before using imwrite. If it is indeed images (.jpg, .tiff etc) that constitutes your p...

3年以上 前 | 0

| 採用済み

回答済み
find the sum by function
function total = grade_eyad(v) [~,idx] = min(v); %finding the position of the minimum value (3 in the given example) v...

3年以上 前 | 0

回答済み
need help find the sum of the vector by the function
Under the assumption that only one instance of the minimum grade should be replaced, and that the minimum grade should be includ...

3年以上 前 | 0

回答済み
Standard deviation error bars not in the centre of the bar
You're just missing the y input for your errorbar. I belileve your problem will be solved by just replacing eb = errorbar(avera...

3年以上 前 | 0

| 採用済み

回答済み
How to plot three functions in three separate figures and simultaneously in one figure but in three different windows of the same figure?
Look in the documentation for the function subplot figure; subplot(3, 1, 1); plot(z,A); subplot(3, 1, 2); plot(z,B); subpl...

3年以上 前 | 0

| 採用済み

回答済み
How can my outputs be assigned to each image that is being processed
I would assign the outputs either to a multidimensional struct: output = repmat(struct("RGB",[],... "grayimage",[],... ...

4年弱 前 | 0

回答済み
Text orientation right to left
I'm not fully sure if this adresses your problem - but this does something along the lines of orienting the text right to left. ...

4年弱 前 | 0

質問


Use string or character arrays in code?
I am writing a few functions and scripts performing operations on files and content from files. Often I use sprintf, uigetfile ...

4年弱 前 | 2 件の回答 | 2

2

回答

解決済み


Matlab Basics - Convert a row vector to a column vector
Write a script to convert a row (e.g. x = [1 2 3]) to a column (e.g. y = [1;2;3]), your script should be able to do this for any...

4年弱 前

解決済み


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

4年弱 前

解決済み


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

4年弱 前

解決済み


find the surface area of a cube
given cube side length x, find the surface area of the cube, set it equal to y

4年弱 前

解決済み


Is the input divisible by 3?
Return true if the input is divisible by 3 and false if not.

4年弱 前

解決済み


Binary numbers
Given a positive, scalar integer n, create a (2^n)-by-n double-precision matrix containing the binary numbers from 0 through 2^n...

4年弱 前

解決済み


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

4年弱 前

解決済み


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

4年弱 前

さらに読み込む