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

fast 3 Jahre vor | 0

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

fast 3 Jahre vor | 0

| akzeptiert

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

fast 3 Jahre vor | 0

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

etwa 3 Jahre vor | 0

| akzeptiert

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

mehr als 3 Jahre vor | 0

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

mehr als 3 Jahre vor | 1

Frage


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

mehr als 3 Jahre vor | 1 Antwort | 0

1

Antwort

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

mehr als 3 Jahre vor | 2

| akzeptiert

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

mehr als 3 Jahre vor | 1

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

mehr als 3 Jahre vor | 1

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

mehr als 3 Jahre vor | 0

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

mehr als 3 Jahre vor | 0

| akzeptiert

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

mehr als 3 Jahre vor | 0

| akzeptiert

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

mehr als 3 Jahre vor | 0

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

mehr als 3 Jahre vor | 0

| akzeptiert

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

mehr als 3 Jahre vor | 0

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

mehr als 3 Jahre vor | 0

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

mehr als 3 Jahre vor | 0

| akzeptiert

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

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
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",[],... ...

fast 4 Jahre vor | 0

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

fast 4 Jahre vor | 0

Frage


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

fast 4 Jahre vor | 2 Antworten | 2

2

Antworten

Gelöst


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

fast 4 Jahre vor

Gelöst


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

fast 4 Jahre vor

Gelöst


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

fast 4 Jahre vor

Gelöst


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

fast 4 Jahre vor

Gelöst


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

fast 4 Jahre vor

Gelöst


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

fast 4 Jahre vor

Gelöst


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

fast 4 Jahre vor

Gelöst


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

fast 4 Jahre vor

Mehr laden