답변 있음
how to display / recall data in matlab
Seems To Me Like What You Want Is To Keep Track Of All Your If Conditions With A Logical Index index = B > 40 & B < 80; % yo...

7년 초과 전 | 0

답변 있음
Why does it become four number in a line?
you accessed a 2d matrix with linear indexing, If you want to retain the dimentions of your matrix use subscripts instead: A(:...

7년 초과 전 | 0

답변 있음
How to code with gui
You Can Start By Reading About App Designer https://www.mathworks.com/help/matlab/creating_guis/create-a-simple-app-or-gui-us...

7년 초과 전 | 0

답변 있음
MATLAB pause does not seem to work
I just encountered the exact same weird issue... aparently you can switch pause on and off, and i got some piece of code from s...

7년 초과 전 | 1

답변 있음
How to plot data points in different colors depending on condition?
you can use the conditions to create logical index masks of your data and plot only the relevant data for each condition: f1=fi...

7년 초과 전 | 0

| 수락됨

답변 있음
Gene Boundaries for Genetic Algorithm
data = randi(4, 1, 400); seq = 1:6; % if you mean the sum of that sequence you are looking for x = sum(seq, 2); if any(str...

7년 초과 전 | 0

제출됨


Simple UI
This is an extension to the GUI layout toolbox which provides flow layout containers and some other stuff

7년 초과 전 | 다운로드 수: 106 |

0.0 / 5
Thumbnail

질문


Is is necessary to use set/get functions?
Is it still necessary to use the set/get methods to set/get the properties of UI components? fig = figure(); fig.Color = 'whit...

7년 초과 전 | 답변 수: 1 | 1

1

답변

답변 있음
how can I save the selected from radio button in text file?
It realy depends on the design of your GUI do you have a submit button or do you capture the selection of the radio button? If...

7년 초과 전 | 0

답변 있음
What is the decimal RGB scale used in Matlab called?
some functions like plot use color intensity values (between 0 and 1) to represent RGB values, instead of what you are used to a...

7년 초과 전 | 1

답변 있음
Duplicating the rows and columns of image, without using imresize.
The image is black because you are displaying zeros You say that you want to duplicate the rows and columns - I assume you mean...

7년 초과 전 | 0

| 수락됨

답변 있음
Extract values from double with for loop and calculate sum
Can also use accumarray to solve this one n = 10; xMax = 7; % generate the matrix as: [boolean, x, 1] % x is the column of...

7년 초과 전 | 0

답변 있음
Best way to loop through multiple subfolders and run either script A or B depending on folder name?
path = 'Whatever path your study folder lies in'; folders = split(genpath(path), ';'); matchExpA = cellfun(@any, regexpi(folde...

7년 초과 전 | 0

답변 있음
Difference in File Referencing
Without the Code We Can Only Speculate. But Using "File1.Tif'" generates A String Object While 'File1.Tif' Is A Character Array....

7년 초과 전 | 0

| 수락됨

답변 있음
Matlab function to take matrix as input and return elements in its four corners as output
I Don't See Any Particular Problem With That Line. The Problem Is Possibly That You Didn't Send Input Or Enough Input To corner...

7년 초과 전 | 0

답변 있음
How to determine if object has a defined event
Best method I found was ismember('EventName', events(obj));

7년 초과 전 | 0

| 수락됨

답변 있음
i have a martix A, i want missing numbers in the 2nd column as i explained? any help??
granted you always have 1:3 in the first column and values between 1 and 10 in the second: A = [1,3; 1,5; 1,6; 1,8; 1,10; 2,4; ...

7년 초과 전 | 1

답변 있음
Profiling a variable within a function
G = @(t) (floor(t/300)+1)*10; f = @(t) 5*t + G(t); t = 1:899; plot(t,f(t));

7년 초과 전 | 0

| 수락됨

질문


How to determine if object has a defined event
Is there a way to determine if an object instance imlements an event like ismethod for methods and isprop for properties? I tri...

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

1

답변

답변 있음
Help with textscan while reading misc data files
if you know how many lines you want to skip: fid = fopen('data.txt'); % your own filename comes in here a = cell2mat(textscan(...

7년 초과 전 | 1

| 수락됨

답변 있음
How do I make function which gets as input arguments matrix of chars work?
Kevin's Answer Is Correct Of Course, But If that Was The Problem You Were Facing You Would Have Had A Different Error About Ind...

7년 초과 전 | 1

| 수락됨

답변 있음
implementing a script that asks f
input Function Documentation modulo Function Documentation, Or You Can Search In Google And Find At Least Half A Dozen Links ...

7년 초과 전 | 0

| 수락됨

답변 있음
Stem plot inside a for loop
I didn't use your data because I have no idea what you want from it if exist('fig1', 'var') && ishandle(fig1) close(fig1);...

7년 초과 전 | 0

답변 있음
How to output function results over split columns
Figured it out... the problem is you use the end operator with a matrix that's not asigned yet or when you do preset it to a d...

7년 초과 전 | 0

| 수락됨

답변 있음
How to merge a set of struct files?
files = dir('data_*.mat'); % based on the names of the files you supplied c = cell(1,numel(files)); for i = 1:numel(files) ...

7년 초과 전 | 1

| 수락됨

답변 있음
How can i detect max value and his index ?
If you meant to split the array into subarrays according to locations of NaN, then find maximal values of each subarray but the ...

7년 초과 전 | 1

답변 있음
Transferring .mat files to workspace
Use dir Function To Loop Through All The Files And Load Them fileList = dir('Your_path_goes_here'); data = cell(); for fi =...

7년 초과 전 | 0

| 수락됨

답변 있음
Adding Bias To Random Walk
you can make a step & bias vector: stepCoordinates = [1,0;0,1;-1,0;0,-1]; % this creates the bias to the north bias = [ones(1...

7년 초과 전 | 0

| 수락됨

답변 있음
How to solve "Not Enough Input Arguments" Error?
you probably just ran the function using F5, didn't you? the function works, you just need to invoke it properly: A = pascal_t...

7년 초과 전 | 1

| 수락됨

답변 있음
GUI slider problem in edit_text
you can add a utility function that takes in the new value and sets it in the appropriate variable, and gets a list of controls ...

7년 초과 전 | 0

더 보기